赞
踩
注意(我也是使用了好几个版本):poi3.9版本,只支持搭配 xlsx-streamer-1.0.0.jar,其他版本不兼容;poi4.0可使用streamer2.0。
Workbook wb = StreamingReader.builder()
.rowCacheSize(100) // 缓存内存页数(默认10)
.bufferSize(1024) // 缓存内存字节(默认1024)
.open(fis); // 文件(FileInputStream())
// getNumberOfSheets() 可获取所有Sheet页数
for (Row row : sheet) {
// 遍历行
for (Cell cell : row) {
// 遍历列
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。