欢迎来到天天文库
浏览记录
ID:38777651
大小:48.00 KB
页数:6页
时间:2019-06-19
《图片存入mySql数据库》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、我在程序代码里贴了向Mysql数据库写入image代码的程序,可是好多人都是Java的初学者,对于这段代码,他们无法将它转换成jsp,所以我在这在写一下用jsp怎样向数据库写入图像文件。大家先在数据库建这样一张表,我下面的这些代码对任何数据库都通用,只要支持blob类型的只要大家将连接数据库的参数改一下就可以了。SQL>createtableimage(idint,contentvarchar(200),imageblob);如果在sqlserver2000的数据库中,可以将blob字段换为image类型,这在SqlServer2
2、000中是新增的。testimage.html文件内容如下:
3、/FORM>
4、.mysql.Driver").newInstance();Stringurl="jdbc:mysql://localhost/mysql?user=root&password=&useUnicode=true&characterEncoding=8859_1";//其中mysql为你数据库的名字,user为你连接数据库的用户,password为你连接数据库用户的密码,可自己改Connectionconn=DriverManager.getConnection(url);Stringcontent=request.getParam
5、eter("content");Stringfilename=request.getParameter("image");FileInputStreamstr=newFileInputStream(filename);Stringsql="insertintotest(id,content,image)values(1,?,?)";PreparedStatementpstmt=dbconn.conn.prepareStatement(sql);pstmt.setString(1,content);pstmt.setBinarySt
6、ream(2,str,str.available());pstmt.execute();out.println("Success,YouHaveInsertanImageSuccessfully");%>下面我写一个测试image输出的例子看我们上面程序写的对不对,testimageout.jsp的内容如下:<%@pagecontentType="text/html;charset=gb2312"%><%@pageimport="java.sql.*"%><%@pageimport="java.util.*"%><%@pageim
7、port="java.text.*"%><%@pageimport="java.io.*"%>
8、的密码,可自己改Connectionconn=DriverManager.getConnection(url);Stringsql="selectimagefromtestwhereid=1";Statementstmt=null;ResultSe
此文档下载收益归作者所有