excel-streaming-reader icon indicating copy to clipboard operation
excel-streaming-reader copied to clipboard

An easy-to-use implementation of a streaming Excel reader using Apache POI

Results 102 excel-streaming-reader issues
Sort by recently updated
recently updated
newest added

Hello, is there any reason why the following dependencies are included: ``` com.rackspace.apache xerces2-xsd11 2.11.1 xml-apis xml-apis 1.4.01 ``` ? The project supports only Java 1.7+ so JAXP is there...

[This dataset](https://drive.google.com/file/d/1ScbTPNA-lBmC1Ogz75DogjyirDIk9duJ/view) runs for several hours and eventually runs out of heap space Possibly the issue is the large number of unique strings?

Ran into this issue for a file I'm working on that is close to 1,5 million rows and covers two sheets. This is the basic iterator I'm running: for(Row row:wb.getSheetAt(0)){...

I tried adding the dependencies: / / https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 libraryDependencies += "org.slf4j" % "slf4j-log4j12" % "1.7.10" % Test did n't help. Any kind of help is really appreciated.

First of all I (being pained by OOMs due to POI Excel imports ;) ) would like to say how impressed I am by the low footprint of this streaming...

![image](https://user-images.githubusercontent.com/10005563/30055463-2130a210-9262-11e7-8f74-af5fc0a276f2.png) ``` Error:com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK schemaorg_apache_xmlbeans/system/sF1327CCA741569E70F9CA8C9AF9B44B2/stqualifier91b9type.xsb ``` ![image](https://user-images.githubusercontent.com/10005563/30055473-2cd95ca6-9262-11e7-8fe0-d9cdd5a6348d.png)

Hi! I've noticed that for a formula cell the value is returned in quotes. Is this by design? What is the reason for it? In particular, if the value is...

I tested with an excel file (file format was xlsx extension) and there are no special things inside) but sheet.getLastRowNum() was returned ZERO. Could anyone give me a suggestion for...

https://yadi.sk/d/7N-lbmgA3MGqCM - this one. Read it as described in your project's main page. ``` Exception in thread "main" java.lang.NumberFormatException: For input string: "1 " at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:580) at java.lang.Integer.parseInt(Integer.java:615)...

Hi guys, i've got such file and wonder why i have exception due to plain iterating with StreamingWorkbook. [Athlete Medals.xlsx](https://github.com/monitorjbl/excel-streaming-reader/files/1094216/Athlete.Medals.xlsx) The reason is BufferedStringsTable::parseCTRst , xmlEventReader.nextEvent() return EndElementEvent which cannot...