//直接从本地文件创建 Workbook
//从输入流创建 Workbook
InputStream is = new FileInputStream(source6le);
jxl.Workbook rwb = Workbook.getWorkbook(is);
}
catch (Exception e)
{
e.printStackTrace();
}
一旦创建了 Workbook,我们就可以通过它来访问 Excel Sheet(术语:工作
表)。参考下面的代码片段:
//获取第一张 Sheet 表
Sheet rs = rwb.getSheet(0);
我们既可能通过 Sheet 的名称来访问它,也可以通过下标来访问它。如果通过
下标来访问的话,要注意的一点是下标从 0 开始,就像数组一样。
一旦得到了 Sheet,我们就可以通过它来访问 Excel Cell(术语:单元格)。参
考下面的代码片段:
//获取第一行,第一列的值
Cell c00 = rs.getCell(0, 0);
String strc00 = c00.getContents();
//获取第一行,第二列的值
Cell c10 = rs.getCell(1, 0);
String strc10 = c10.getContents();
//获取第二行,第二列的值
Cell c11 = rs.getCell(1, 1);
String strc11 = c11.getContents();
System.out.println("Cell(0, 0)" + " value : " + strc00
+ "; type : " + c00.getType());
System.out.println("Cell(1, 0)" + " value : " + strc10
+ "; type : " + c10.getType());
System.out.println("Cell(1, 1)" + " value : " + strc11
+ "; type : " + c11.getType());
评论4
最新资源