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

使用Statement 的addBatch方法批量导入数据库

时间:2014-12-06 19:25:16      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   使用   sp   on   数据   

 1     try {
 2                 boolean auto = conn.getAutoCommit();
 3                 conn.setAutoCommit(false);
 4 
 5                 Statement stat = conn.createStatement();
 6                 Iterator<String> it = sourcetime.iterator();
 7               //  System.out.println("get sourcetime iterator successfully");
 8                 while (it.hasNext()) {
 9                     String st = it.next();
10                     //System.out.println("this st*_*"+st+"*_*");
11                     Pattern subpat = Pattern.compile("[|]"); // 创建Pattern实例
12                     String mac_time[] = subpat.split(st);
13                     int time = Integer.parseInt(mac_time[1]); // time
14                     String mac = mac_time[0];
15                    // System.out.println("this::::"+mac+","+gname +","+time);
16                     String sql = "insert into edges (source,target,time) values(‘" + mac + "‘,‘" + gname
17                             + "‘,‘" + time + "‘)";
18                     stat.addBatch(sql);
19                 }
20                 stat.executeBatch();
21                 conn.commit();
22                 logger.info("insert "+gname+" data into DB edges finished");
23                 conn.setAutoCommit(auto);
24             } catch (SQLException e2) {
25                 // TODO Auto-generated catch block
26                 e2.printStackTrace();
27             }

 

使用Statement 的addBatch方法批量导入数据库

标签:style   blog   io   ar   color   使用   sp   on   数据   

原文地址:http://www.cnblogs.com/ivywenyuan/p/4148541.html

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