我正在尝试使用以下代码编写以读取和写入工作簿:
public static void main(String args[]) {
String absoluteFilePath = System.getProperty("user.dir") + File.separator + "abc.xlsx";
System.out.println("Readin file : " + absoluteFilePath);
Workbook workbook = null;
try {
workbook = WorkbookFactory.create(new File(absoluteFilePath));
//reading and writing on sheets of workbook
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
System.out.println("Writing to workbook and Closing the file");
FileOutputStream fileOutputStream = new FileOutputStream(
new File(absoluteFilePath));
workbook.write(fileOutputStream);
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
当我第一次运行代码时,我在workbook.write(fileOutputStream);
Exception in thread "main" org.apache.poi.POIXMLException: java.io.IOException: Can't obtain the input stream from /docProps/app.xml
at org.apache.poi.POIXMLDocument.getProperties(POIXMLDocument.java:148)
at org.apache.poi.POIXMLDocument.write(POIXMLDocument.java:199)
at NewNewDriver.main(NewNewDriver.java:129)
Caused by: java.io.IOException: Can't obtain the input stream from /docProps/app.xml
at org.apache.poi.openxml4j.opc.PackagePart.getInputStream(PackagePart.java:500)
at org.apache.poi.POIXMLProperties.<init>(POIXMLProperties.java:75)
at org.apache.poi.POIXMLDocument.getProperties(POIXMLDocument.java:146)
... 2 more
在此之后,工作簿被破坏,我减少到0kb,我在WorkbookFactory.create()
上得到了这个例外:
org.apache.poi.poifs.filesystem.NotOLE2FileException: Invalid header signature; read 0x0000000000000000, expected 0xE11AB1A1E011CFD0 - Your file appears not to be a valid OLE2 document
at org.apache.poi.poifs.storage.HeaderBlock.<init>(HeaderBlock.java:167)
at org.apache.poi.poifs.storage.HeaderBlock.<init>(HeaderBlock.java:117)
at org.apache.poi.poifs.filesystem.NPOIFSFileSystem.<init>(NPOIFSFileSystem.java:225)
at org.apache.poi.poifs.filesystem.NPOIFSFileSystem.<init>(NPOIFSFileSystem.java:164)
at org.apache.poi.poifs.filesystem.NPOIFSFileSystem.<init>(NPOIFSFileSystem.java:145)
at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:105)
at NewNewDriver.main(NewNewDriver.java:27)
Closing the file
Exception in thread "main" java.lang.NullPointerException
at NewNewDriver.main(NewNewDriver.java:129)
我应该在哪里以及如何使用FileOutputStream,workbook.write(),即使我正在使用WorkbookFactory,我也应该使用FileInputStream吗?
------------编辑----------------------我的代码正常运行 我使用FileInputStream而不是WorkbookFactory来创建工作簿,并在关闭FileOutputStream后关闭它。这很有用。
答案 0 :(得分:4)
我想我发现了你的问题:
workbook = WorkbookFactory.create(new File(absoluteFilePath));
....
FileOutputStream fileOutputStream = new FileOutputStream(
new File(absoluteFilePath));
workbook.write(fileOutputStream);
您正在打开一个文件,然后尝试在文件仍处于打开和使用状态时覆盖它,但不支持
您需要做的是将更新后的文件写入不同的文件名。如果要替换它,则需要在关闭原始文件后执行第二步。
目前,您已经开始覆盖该文件,然后POI会尝试将原始文件的某些部分复制到新文件中,然后失败,因为它尝试读取的原始文件已经被摧毁了!
(NPOIFSFileSystem和OPCPackage,底层包代码,都支持就地写入和就地更新,但更高级别的代码,如HSSFWorkbook / XSSFWorkbook / XWPFDocument仅支持写入新文件,并且&#39;没有足够的社区兴趣在就地写作添加支持的工作)
答案 1 :(得分:0)
我应该在何处以及如何使用FileOutputStream,workbook.write()
不在finally
区块中。如果您遇到任何异常,您肯定不想在文件中写入可能的垃圾。 workbook
块中的null
甚至可能是finally
。
将该代码移至try
块的末尾。