Apache POI xls文件错误

时间:2012-08-24 13:50:38

标签: java apache-poi xls

我想阅读xlsxlsx文件格式。它适用于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

1 个答案:

答案 0 :(得分:3)

我认为您的问题是由于您尝试使用OPCPackage构建工作簿,即使您使用WorkbookFactory也是如此。 OPCPackage"解压缩"你的.xlsx是为了能够读取里面的xml文件,但这不适用于HSSF,因为它是一个二进制文件。

我的推荐是您使用其他构造函数,例如

WorkbookFactory.create(InputStream input)

我想它应该可以正常工作。

希望它有所帮助,