https://bz.apache.org/bugzilla/show_bug.cgi?id=58747
--- Comment #5 from Javen O'Neal <[email protected]> --- (In reply to Sergio Nalin from comment #2) > Tested with 3.14-beta2-20151217. > java.lang.NullPointerException > at > org.apache.poi.xssf.eventusermodel.XSSFReader$SheetIterator. > <init>(XSSFReader.java:204) Based on the date and line number, either wb is null or wb.getRelationships() is null. Make sure you aren't mixing versions of poi, poi-ooxml, and poi-ooxml-schemas (or the full ooxml-schemas), as that might cause unexpected behavior. Line 204: for(PackageRelationship rel : wb.getRelationships()){ https://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/eventusermodel/XSSFReader.java?revision=1715555&view=markup#l196 -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
