JDBC保存图片(BLOB)
如果要往数据库插入图片文件,您需要通过PreparedStatement接口
将图片存储在MySQL数据库中。
PreparedStatement接口的setBinaryStream() 方法用于将二进制信息数据进行存储。
1 setBinaryStream方法
重载方法1:
public void setBinaryStream(int paramIndex,InputStream stream)
throws SQLException
重载方法2:
public void setBinaryStream(int paramIndex,InputStream stream,long length)
throws SQLException
2 JDBC保存图片的示例
2.1 创建表
为了将图片存储到数据库中,我们建立一张image_test表,表中使用了BLOB(二进制大对象)字段类型,建表语句如下:
CREATE TABLE `image_test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`photo` blob,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
2.2 准备需要保存的文件
我们需要准备一张需要保存的图片文件,如:d:/upload/spirng.jpg。
2.3 编写InsertImage类
package com.yiidian;
import java.io.FileInputStream;
import java.sql.*;
/**
* 一点教程网 - http://www.yiidian.com
*/
public class InsertImage{
public static void main(String args[])throws Exception {
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con= DriverManager.getConnection(
"jdbc:mysql://localhost:3306/test","root","root");
PreparedStatement ps=con.prepareStatement("insert into image_test(name,photo) values(?,?)");
ps.setString(1,"spring.jpg");
FileInputStream fin=new FileInputStream("d:\\upload\\spring.jpg");
ps.setBinaryStream(2,fin,fin.available());
int i=ps.executeUpdate();
System.out.println(i+" 条记录被影响!");
con.close();
}catch(Exception e){
System.out.println(e);
}
}
}
2.4 运行测试
点击Blob字段内容,预览图片效果如下:
热门文章
优秀文章