码迷,mamicode.com
首页 > 其他好文 > 详细

读取excel表格数据

时间:2017-11-16 18:38:59      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:col   string   etc   div   第一个   nts   for   nbsp   excel表格   

读取excel表格中数据

 1 // 解析excel
 2 Workbook excel = Workbook.getWorkbook(new File("E:\\excel.xls"));
 3 // 第一个sheet
 4 Sheet sheet = excel.getSheet(0);
 5 // 获取行数
 6 int rows = sheet.getRows();
 7 // 获取列数
 8 int rols = sheet.getCols();
 9 // 遍历
10  for (int i=1; i<rows; i++) {
11      // 获取第j行列对象
12      Cell code = sheet.getCell(i,j);
13     // 获取对象里的值
14      String code1 = code.getContents();
15 }

 

 

读取excel表格数据

标签:col   string   etc   div   第一个   nts   for   nbsp   excel表格   

原文地址:http://www.cnblogs.com/hugang2017/p/7845458.html

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