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

jdbc插入大对象及读取大对象

时间:2017-04-27 10:19:05      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:input   ring   进制   from   inpu   date   out   mit   save   

 1 /**
 2  * 插入大对象
 3  */
 4     @Test
 5     public void testSavePic(){
 6         Connection conn=null;
 7         Statement st=null;
 8         PreparedStatement pst=null;
 9         try {
10             conn=DBUtils.getConn();
11             conn.setAutoCommit(false);//事物不能自动提交
12             st=conn.createStatement();
13             long start = System.currentTimeMillis();
14             String sql="insert into stu(sid,name,pic,info) values(?,?,?,?)";
15             pst=conn.prepareStatement(sql);
16             pst.setInt(1, 1);
17             pst.setString(2, "tim");
18             //设置大对象
19             File file =new File("D:\\arch\\unarch/b.jpg");
20             FileInputStream fis = new FileInputStream(file);
21             pst.setBinaryStream(3, fis,file.length());//设置二进制流,指定长度
22             pst.setString(4, "xxxxxx");
23             pst.executeUpdate();
24              conn.commit();//提交事务
25              System.out.println(System.currentTimeMillis()-start);
26         } catch (Exception e) {
27             // TODO Auto-generated catch block
28             e.printStackTrace();
29         }
30         finally{
31             DBUtils.closeAll(null, st, conn);
32         }
33     }

2、读取大对象

 1 /**
 2  * 对取大对象
 3  */
 4     @Test
 5     public void testReadPic(){
 6         Connection conn=null;
 7         Statement st=null;
 8         PreparedStatement pst=null;
 9         try {
10             conn=DBUtils.getConn();
11             conn.setAutoCommit(false);//事物不能自动提交
12             st=conn.createStatement();
13             long start = System.currentTimeMillis();
14             String sql="select pic from stu where sid=?";
15             pst=conn.prepareStatement(sql);
16             pst.setInt(1, 1);
17             ResultSet rs = pst.executeQuery();
18             if(rs.next()){
19                 byte[] bytes = rs.getBytes(1);
20                 FileOutputStream fos = new FileOutputStream("d:/kk.jpg");
21                 fos.write(bytes);
22                 fos.close();
23             }
24                     
25              conn.commit();//提交事务
26              System.out.println("over");
27              System.out.println(System.currentTimeMillis()-start);
28         } catch (Exception e) {
29             // TODO Auto-generated catch block
30             e.printStackTrace();
31         }
32         finally{
33             DBUtils.closeAll(null, st, conn);
34         }
35     }

 

jdbc插入大对象及读取大对象

标签:input   ring   进制   from   inpu   date   out   mit   save   

原文地址:http://www.cnblogs.com/yihaifutai/p/6772469.html

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