I need to auto-fit all rows in large (30k+ rows) xlsx file.

The following code via apache poi works on small files, but goes out with OutOfMemoryError on large ones:

Workbook workbook = WorkbookFactory.create(inputStream);
Sheet sheet = workbook.getSheetAt(0);

for (Row row : sheet) {
    row.setHeight((short) -1);
}

workbook.write(outputStream);

Update: Unfortunately, increasing heap size is not an option - OutOfMemoryError appears at -Xmx1024m and 30k rows is not an upper limit.

link|improve this question

Where you runing this code? Inside App/Web server or standalone? – JSS Feb 4 '11 at 12:28
I'm running it inside Tomcat 6.0 – miah Feb 4 '11 at 12:48
Whats the default memory assign to Tomcat at startup? – JSS Feb 4 '11 at 12:58
simple as that: increase the -Xmx setting on your server by large amount. Apache tomcat has nothing to do w/ the problem – bestsss Feb 6 '11 at 13:30
feedback

3 Answers

up vote 8 down vote accepted

Try using the event API. See Event API (HSSF only) and XSSF and SAX (Event API) in the POI documentation for details. A couple of quotes from that page:

HSSF:

The event API is newer than the User API. It is intended for intermediate developers who are willing to learn a little bit of the low level API structures. Its relatively simple to use, but requires a basic understanding of the parts of an Excel file (or willingness to learn). The advantage provided is that you can read an XLS with a relatively small memory footprint.

XSSF:

If memory footprint is an issue, then for XSSF, you can get at the underlying XML data, and process it yourself. This is intended for intermediate developers who are willing to learn a little bit of low level structure of .xlsx files, and who are happy processing XML in java. Its relatively simple to use, but requires a basic understanding of the file structure. The advantage provided is that you can read a XLSX file with a relatively small memory footprint.

For output, one possible approach is described in the blog post Streaming xlsx files. (Basically, use XSSF to generate a container XML file, then stream the actual content as plain text into the appropriate xml part of the xlsx zip archive.)

link|improve this answer
Hi am also having the same problem of reading large excel files. Getting out of memory issues. I have seen the poi.apache.org/spreadsheet/how-to.html#xssf_sax_api and it does not specify how to read the excel files. Please help. – Ashish Feb 20 at 13:38
@Ashish: Please post your request as a separate question on Stack Overflow with more details. That way, other users can help you as well. – markusk Mar 6 at 13:59
feedback

Try setting the following VM option at startup: -Xmx512m. This will incerease the memory allocated to the JVM to 512 MB. That should be enough.

link|improve this answer
feedback

I used Event API for a HSSF file (.xls), and I discovered terrible lack of documentation about order of records.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.