Hi, I'm using Apache POI for writing spreadsheets. While the BigGridDemo works wonderfully well for XLSX files. Is there any way one can reduce the memory footprint while writing a XLS file? Currently creating 60K rows with 250 cells, leaves an "out of memory" exception with the default stack size. I understand that once I increase the stack size, I can do away with this error. But it would be nice to know if there exists any method by which we can "stream" the output without keeping all of it in memory at the same time.
-- Thanks
