Java write Excel files with POI event model

2019-05-13 14:10发布

问题:

Is it possible to create and write to a (new) excel file using the event driven API from POI? I've found examples on how to read with that API, but not how to write.

thanks, Jeff

回答1:

Here is one possibility, not very well written, though:

http://www.docjar.org/html/api/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java.html

I'm using a modified version of that, which does not require temporary files and is overall more efficient



回答2:

Yes. Absolutely. Look at POI-XSSF and POI-HSSF

http://poi.apache.org/spreadsheet/how-to.html#user_api



回答3:

You could use the SXSSF from Apache POI

https://poi.apache.org/spreadsheet/how-to.html#sxssf



回答4:

I'vr worked with SXSSF from Apache POI. It is really good for writing huge files of data since it keeps only a small part of data in memory and flushes the remaining to disk, as opposed to HSSF or XSSF which keep all data in memory till finally writing at once. But unfortunately, SXSSF is that it is meant only for writing, not for reading.