本文实例为大家分享了Java将Excel数据导入到数据库的具体代码,供大家参考,具体内容如下
所用Jar包
1. sqljdbc4.jar
连接数据库的Jar包(根据数据库的不同进行选择,我用的SqlServer2008)
2.Jxl.jar
访问Excel的Jar包
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
package xsl; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import jxl.Cell; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; public class Test { public static void main(String[] args) { //定义一维数组,存放Excel表里的每一行的各个列的数据 Object[] obj = null ; //定义List集合,存放每一行的数据 ArrayList<Object[]> list = new ArrayList<Object[]>(); String filePath = "C:/Users/0223000320/Desktop/student.xls" ; InputStream is = null ; Workbook rwb = null ; try { is = new FileInputStream(filePath); //定义文本输入流 } catch (FileNotFoundException e) { e.printStackTrace(); } try { rwb = Workbook.getWorkbook(is); //打开Workbook } catch (BiffException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } //获取Excel表的Sheet1区域的数据 Sheet sht = rwb.getSheet( "Sheet1" ); int col = sht.getColumns(); //获得Excel列 int row = sht.getRows(); //获得Excel行 Cell c1 = null ; //先将数据按行装入一个一维数组中, 然后将数组逐个加入到ArrayList for ( int i= 0 ; i < row; i++){ obj = new Object[col]; for ( int j = 0 ;j <col; j++){ c1 = sht.getCell(j,i); //add String contents = c1.getContents(); System.out.println(contents); obj[j] = c1.getContents(); } System.out.println( "------------" ); list.add(obj); } } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/Donnnnnn/p/7742368.html