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内容请搜索靠谱客的其他文章。
发表评论 取消回复