欢迎访问服务器技术网-www.fuwuqijishu.com

利用java如何读取Excel中的数据?

软件 fuwuqijishu 2年前 (2022-10-01) 19次浏览 0个评论 扫描二维码

关于利用java如何读取Excel中的数据! 的问题

public class POIreadExcel2003 {
public POIreadExcel2003() {
try {
// 读取要导出的excel文件
POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(
“e://workbook2。
xls”));
HSSFWorkbook wb = new HSSFWorkbook(fs);
ExcelExtractor extractor = new ExcelExtractor(wb);
extractor。
setFormulasNotResults(false);
extractor。setIncludeSheetNames(false);
// 工作表的序号
Sheet sheet1 = (Sheet) wb。getSheetAt(0);
// 开始遍历整个工作表
Iterator it = sheet1。
rowIterator();
while (it。hasNext()) {
Row row = (Row) it。next();
Iterator cit = row。cellIterator();
while (cit。
hasNext()) {
// 输出数据
if (cit。next()。getCellType() == Cell。CELL_TYPE_FORMULA) {
Cell cell = cit。next();
FormulaEvaluator evaluator = wb。
getCreationHelper()
。createFormulaEvaluator();
// 把公式行的数据计算出来
CellValue cellValue = evaluator。evaluate(cell);
System。
out。println(cellValue。toString() + “,”);
} else {
System。out。print(cit。next()。toString() + “,”);
}
}
}
} catch (Exception e) {
System。
out。println(“阅读失败。。。”);
}
}
/**
* @param args
*/
public static void main(String[] args) {
new POIreadExcel2003();
}
}。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2602.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900