我是靠谱客的博主 激动短靴,这篇文章主要介绍JAVA分批读取excle_Java读取Excel文件(支持xls,xlsx,多sheet),现在分享给大家,希望可以做个参考。

1. pom.xml依赖

org.apache.poi

poi

4.0.1

org.apache.poi

poi-ooxml

4.0.1

org.apache.poi

poi-ooxml-schemas

4.0.1

2. 工具类封装

public class ExcelReadUtil {

private static Logger logger = LoggerFactory.getLogger(ExcelReadUtil.class);

public static HashMap>> readExcel(File file, int ignoreRow) {

if (file.getName().toLowerCase().endsWith(".xlsx")) {

return readExcelForXlsx(file, ignoreRow);

} else if (file.getName().toLowerCase().endsWith(".xls")) {

return readExcelForXls(file, ignoreRow);

}

return null;

}

/**

* 读取Excel xlsx后缀名文件数据

*

* @param file

*/

private static HashMap>> readExcelForXlsx(File file, int ignoreRow) {

HashMap>> map = new Ha

最后

以上就是激动短靴最近收集整理的关于JAVA分批读取excle_Java读取Excel文件(支持xls,xlsx,多sheet)的全部内容,更多相关JAVA分批读取excle_Java读取Excel文件(支持xls内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部