码迷,mamicode.com
首页 > 数据库 > 详细

使用hibnate向数据库写入图片对象

时间:2017-12-06 00:01:21      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:create   tput   input   缓冲区   users   照片   buffer   缓存   puts   

写入到数据库:

@Test
    public void testwriteBlob() throws Exception{
        Students s = new Students(1,"张三","男",new Date(),"河南");
        //获取照片
        File f = new File("/Users/liqiye/Desktop/banner1.jpg");
        //获得输入流
        InputStream input = new FileInputStream(f);
        //创建Blob对象
        Blob image = Hibernate.getLobCreator(session).createBlob(input, input.available());
        //设置照片属性
        s.setPicture(image);
        session.save(s);
        
    }

 

从数据库读取出来:

@Test
    public void testReadBlob() throws Exception{
        Students s = (Students)session.get(Students.class, 1);
        Blob b = s.getPicture();
        //获得输入流
        InputStream input = b.getBinaryStream();
        
        File f = new File("/Users/liqiye/Desktop/dest.jpg");
        //获得输出流
        OutputStream out = new FileOutputStream(f);
        //创建缓存区
        byte[] buffer = new byte[input.available()];
        //将输入流读到缓冲区里
        input.read(buffer);
        //从缓冲区写出到文件
        out.write(buffer);
        input.close();
        out.close();
        
    }

使用hibnate向数据库写入图片对象

标签:create   tput   input   缓冲区   users   照片   buffer   缓存   puts   

原文地址:http://www.cnblogs.com/liqy/p/7990024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!