为了账号安全,请及时绑定邮箱和手机立即绑定

可以打印出图片的大小来,测试的时候是绿色的条, 但是数据库里面没有任何数据。

代码如下:

@Test

public void writePicture() throws Exception{

Student student5 = new Student(005, "Naruto", "男", new Date(), "火之国");

File pictureFile = new File("c:"+File.separator+"zhang"+File.separator+"Naruto.jpg");

//System.out.println(pictureFile);

InputStream input;

try {

input = new FileInputStream(pictureFile);

Blob image = Hibernate.getLobCreator(session).createBlob(input, input.available());

System.out.println("照片长度:"+image.length());   //这时候打印出的数据是:10505

student5.setPicture(image);

session.save(student5);

System.out.println("保存成功!");

} catch (FileNotFoundException e) {

System.out.println("图片文件没找到");

e.printStackTrace();

}catch (IOException e) {

System.out.println("Bolb对象创建失败,input.available()错误!");

e.printStackTrace();

}

}

这时候测试时,是绿色的条,但是数据库里面没有数据,其他id什么的数据都没存进去?这是为什么呢?



正在回答

1 回答

谢谢大家  解决了。

得加上这个:

session.doWork(new Work() {

@Override

public void execute(Connection connection) throws SQLException {

connection.setAutoCommit(true);

}

});

都糊涂了!!!好低级的错误,吃饭回来后才看到。

2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

可以打印出图片的大小来,测试的时候是绿色的条, 但是数据库里面没有任何数据。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信