1

在尝试使用 ApachePOI 打开 excel 时,我得到了

org.apache.poi.openxml4j.exceptions.InvalidOperationException: Can't open the specified file: 'C:\Users\mdwaipay\AppData\Local\Temp\poifiles\poi-ooxml-1570030023.tmp'

我检查了。没有创建这样的文件夹。我正在使用 Apache POI 3.6 版。

有什么帮助吗?类似的代码在不同的工作区中运行良好。在这里无所适从。

代码:

public Xls_Reader(String path) {
  this.path=path; 
  try { 
      fis = new FileInputStream(path); 
      workbook = new XSSFWorkbook(fis); 
      sheet = workbook.getSheetAt(0); 
      fis.close(); 
  }
  catch (Exception e) 
  { e.printStackTrace(); 
  } 
}
4

1 回答 1

5

你为什么要拿一个非常好的文件,把它包装在一个InputStream.,然后要求 POI 必须为你缓冲整个文件,以便它可以进行随机访问?如果您直接将文件传递给 POI,生活会更好,因此它可以根据需要跳过!

如果您想同时使用 XSSF (.xlsx) 和 HSSF (.xls),请将您的代码更改为

public Xls_Reader(String path)  { 
  this.path = path; 
  try { 
    File f = new File(path);
    workbook = WorkbookFactory.create(f); 
    sheet = workbook.getSheetAt(0); 
  } catch (Exception e) {
    e.printStackTrace();
  } 
}

如果您只需要 XSSF 支持,和/或您需要完全控制资源何时关闭,请执行类似的操作

OPCPackage pkg = OPCPackage.open(path);
Workbook wb = new XSSFWorkbook(pkg);

// use the workbook

// When you no longer needed it, immediately close and release the file resources
pkg.close();
于 2012-09-14T08:45:22.873 回答