https://issues.apache.org/bugzilla/show_bug.cgi?id=46448
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #2 from Yegor Kozlov <[email protected]> 2008-12-30 02:04:38 PST --- Opening *.xlsx files will always be slower that opening *.xls just because parsing XML is always slower than reading binary data. We use the XMLBeans technology (http://xmlbeans.apache.org/) to map XML to Java and takes quite some time to process OOXML documents. A possible workaround is to use XSSF Event API: http://poi.apache.org/spreadsheet/how-to.html#xssf_sax_api. It requires basic understanding of the file structure but allows processing *.xlsx with low memory footprint and much faster than using XSSF usermodel API. Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- 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]
