无法使用ApachePOI打开Excel

时间:2016-04-02 12:32:19

标签: java apache-poi

我正在创建一个新的xlsx文件并尝试使用apache-poi

打开它
 File file = new File("file.xlsx");
 XSSFWorkbook wb=new XSSFWorkbook(file);

然而,我在尝试执行时遇到以下错误

 org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the specified file: 'file.xlsx'  

1 个答案:

答案 0 :(得分:1)

org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the specified file: 'file.xlsx'

也许您应该在文件系统中使用文件的完整路径,因为它无法找到它,或者您的用户没有在当前执行文件路径中打开文件的权限等。

您可以查看according section in the Apache POI Busy Developers' Guide

XSSFWorkbook wb = WorkbookFactory.create(new File("MyExcel.xlsx"));

你打算用下面的代码打开它吗?

// XSSFWorkbook, File
OPCPackage pkg = OPCPackage.open(new File("file.xlsx"));
XSSFWorkbook wb = new XSSFWorkbook(pkg);

....

pkg.close();