XSSFWorkbook takes a lot of time to load

后端 未结 2 1930
南笙
南笙 2020-12-05 21:46

I am using the following code:

File file = new File(\"abc.xlsx\");
InputStream st = new FileInputStream(file);
XSSFWorkbook wb = new XSSFWorkbook(st);
         


        
2条回答
  •  北海茫月
    2020-12-05 22:05

    Consider using the Streaming version of POI. This will load a subset of the file into memory as needed. It is the recommended method when dealing with large files.

    POI SXSSF

提交回复
热议问题