This is a fork of monitorjbl/excel-streaming-reader.
This implementation supports Apache POI 4.x and only supports Java 8 and above.
To use it, add this to your POM:
<dependencies>
<dependency>
<groupId>com.github.greycode</groupId>
<artifactId>excel-streaming-reader</artifactId>
<version>2.3.4</version>
</dependency>
</dependencies>
The package name is different from the monitorjbl/excel-streaming-reader jar. The code is very similar.
import com.github.greycode.xlsx.StreamingReader;
InputStream is = new FileInputStream(new File("/path/to/workbook.xlsx"));
Workbook workbook = StreamingReader.builder()
.rowCacheSize(100) // number of rows to keep in memory (defaults to 10)
.bufferSize(4096) // buffer size (in bytes) to use when reading InputStream to file (defaults to 1024)
.open(is); // InputStream or File for XLSX file (required)
Once you've done this, you can then iterate through the rows and cells like so:
for (Sheet sheet : workbook){
System.out.println(sheet.getSheetName());
for (Row r : sheet) {
for (Cell c : r) {
System.out.println(c.getStringCellValue());
}
}
}
Or open a sheet by name or index:
Sheet sheet = workbook.getSheet("My Sheet")
The StreamingWorkbook is an autocloseable resource, and it's important that you close it to free the filesystem resource it consumed. With Java 8, you can do this:
try {
InputStream is = new FileInputStream(new File("/path/to/workbook.xlsx"));
Workbook workbook = StreamingReader.builder()
.rowCacheSize(100)
.bufferSize(4096)
.open(is) {
for (Sheet sheet : workbook){
System.out.println(sheet.getSheetName());
for (Row r : sheet) {
for (Cell c : r) {
System.out.println(c.getStringCellValue());
}
}
}
}
You may access cells randomly within a row, as the entire row is cached. However, there is no way to randomly access rows. As this is a streaming implementation, only a small number of rows are kept in memory at any given time.
By default, the /xl/sharedStrings.xml
data for your xlsx is stored in memory and this might cause memory problems.
You can use the setUseSstTempFile(true)
option to have this data stored in a temp file (a H2 MVStore). There is also a setEncryptSstTempFile(true)
option if you are concerned about having the raw data in a cleartext temp file.
Workbook workbook = StreamingReader.builder()
.rowCacheSize(100)
.bufferSize(4096)
.setUseSstTempFile(true)
.setEncryptSstTempFile(true)
.open(is)
Not all POI Cell and Row functions are supported. The most basic ones are (Cell.getStringCellValue()
, Cell.getColumnIndex()
, etc.), but don't be surprised if you get a NotSupportedException
on the more advanced ones.
I'll try to add more support as time goes on, but some items simply can't be read in a streaming fashion. Methods that require dependent values will not have said dependencies available at the point in the stream in which they are read.
This is a brief and very generalized list of things that are not supported for reads:
- Functions
- Macros
- Styled cells (the styles are kept at the end of the ZIP file)
This library uses SLF4j logging. This is a rare use case, but you can plug in your logging provider and get some potentially useful output.
This library will take a provided InputStream
and output it to the file system. The stream is piped safely through a configurable-sized buffer to prevent large usage of memory. Once the file is created, it is then streamed into memory from the file system.
The reason for needing the stream being outputted in this manner has to do with how ZIP files work. Because the XLSX file format is basically a ZIP file, it's not possible to find all of the entries without reading the entire InputStream.
This is a problem that can't really be gotten around for POI, as it needs a complete list of ZIP entries. The default implementation of reading from an InputStream
in POI is to read the entire stream directly into memory. This library works by reading out the stream into a temporary file. As part of the auto-close action, the temporary file is deleted.
If you need more control over how the file is created/disposed of, there is an option to initialize the library with a java.io.File
. This file will not be written to or removed:
File f = new File("/path/to/workbook.xlsx");
Workbook workbook = StreamingReader.builder()
.rowCacheSize(100)
.bufferSize(4096)
.open(f);
This library will ONLY work with XLSX files. The older XLS format is not capable of being streamed.