用poi3.9 导入excel时,导入.xls的没问题,可是导入.xlsx时就报错,原因是什么?
1个回答
展开全部
try {
String fileType = filepath.substring(filepath.lastIndexOf(".")+1);
Workbook workbook = null;
InputStream is = new FileInputStream(filepath);
if (fileType.equalsIgnoreCase("xlsx")) {
workbook = new XSSFWorkbook(filepath);
}else{
workbook = new HSSFWorkbook(is);
}
这样试试
String fileType = filepath.substring(filepath.lastIndexOf(".")+1);
Workbook workbook = null;
InputStream is = new FileInputStream(filepath);
if (fileType.equalsIgnoreCase("xlsx")) {
workbook = new XSSFWorkbook(filepath);
}else{
workbook = new HSSFWorkbook(is);
}
这样试试
追问
解决了 谢谢。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询