使用POI包进行Excel文件操作(2)

 使用POI包读取Excel文件的内容:

一,构造工作簿对象

FileInputStream fis = null;
try {
	// 构造文件输入流
	fis = new FileInputStream("d:\\temp.xls");
} catch (FileNotFoundException e) {
	e.printStackTrace();
	System.exit(0);
}
HSSFWorkbook workbook = null;

try {
	// 构造工作簿
	workbook = new HSSFWorkbook(fis);
} catch (IOException e) {
	e.printStackTrace();
	System.exit(0);
}
try {
	// 关闭文件输入流
	fis.close();
} catch (IOException e) {
	e.printStackTrace();
}

 

二、读取并输出数据:

// 取得第一个工作表
HSSFSheet sheet0 = workbook.getSheetAt(0);
// 日期格式化器
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
// 迭代处理行
for (Iterator<Row> rows = sheet0.rowIterator(); rows.hasNext();) {
	Row currentRow = rows.next();
	// 迭代处理单元格
	for (Iterator<Cell> cells = currentRow.iterator(); cells.hasNext();) {
		Cell currentCell = cells.next();
		// 取得当前单元格的数据类型
		int cellType = currentCell.getCellType();
		switch (cellType) {
		case HSSFCell.CELL_TYPE_NUMERIC:
			// 如果该单元格中存放的是日期值,获取单元格中的值并格式化后输出
			if (DateUtil.isCellDateFormatted(currentCell)) {
				System.out.print(sdf.format(currentCell
						.getDateCellValue()));
			} else {
				// 获取单元格中的数值输出
				if (currentCell.getCellStyle().getDataFormat() != 0) {
					System.out.print(String.format("%0$,5.2f",
							currentCell.getNumericCellValue()));
				} else {
					System.out.print(String.format("%d",
							(int) currentCell.getNumericCellValue()));
				}
			}
			break;
		case HSSFCell.CELL_TYPE_STRING:
			System.out.print(currentCell.getStringCellValue());
			break;
		case HSSFCell.CELL_TYPE_BOOLEAN:
			System.out.print(currentCell.getBooleanCellValue());
			break;
		}
		System.out.print("    ");
	}
	System.out.println();
}
System.out.println();



完毕。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值