我想阅读xls
和xlsx
文件格式。它适用于xlsx
格式,但在上传xls
文件时出现以下错误。
try {
FileInputStream fileInputStream = new FileInputStream("/apps/" + fileName);
//POIFSFileSystem fsFileSystem = new POIFSFileSystem(fileInputStream);
Workbook workBook = WorkbookFactory.create(OPCPackage.open(fileInputStream));
//XSSFWorkbook workBook1 = new XSSFWorkbook();
Sheet ssSheet = workBook.getSheetAt(0);
Iterator rowIterator = ssSheet.rowIterator();
while (rowIterator.hasNext()) {
Row ssRow = (Row) rowIterator.next();
Iterator iterator = ssRow.cellIterator();
List cellTempList = new ArrayList();
while (iterator.hasNext()) {
Cell ssCell = (Cell) iterator.next();
cellTempList.add(ssCell);
}
cellDataList.add(cellTempList);
}
} catch (Exception e) {
e.printStackTrace();
}
org.apache.poi.openxml4j.exceptions.InvalidFormatException: Package should contain a content type part [M1.13]
at org.apache.poi.openxml4j.opc.ZipPackage.getPartsImpl(ZipPackage.java:148)
at org.apache.poi.openxml4j.opc.OPCPackage.getParts(OPCPackage.java:623)
at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:230)
请帮忙。
-Thanks
答案 0 :(得分:3)
我认为您的问题是由于您尝试使用OPCPackage
构建工作簿,即使您使用WorkbookFactory
也是如此。 OPCPackage
"解压缩"你的.xlsx
是为了能够读取里面的xml文件,但这不适用于HSSF,因为它是一个二进制文件。
我的推荐是您使用其他构造函数,例如
WorkbookFactory.create(InputStream input)
我想它应该可以正常工作。
希望它有所帮助,