I have to format it nicely, so no way around that. I am working through something that I think will work, which is basically to write the initial, mostly empty, workbook to an in memory byte array, then create a zipinput stream from that, iterate through each entry writing to a zipoutputstream which is connected to any kind of output stream, then when I get to the zip entry for my sheet, I'll write something besides what's in the in memory representation.
On Tue, Oct 19, 2010 at 4:27 PM, Nick Burch <[email protected]> wrote: > On Tue, 19 Oct 2010, David Durham wrote: >> >> My issue is that it uses the filesystem. I don't even have much in the >> way of filesystem resources. Does anyone have ideas about how to do this >> with just an OutputStream? > > CSV. Seriously. If you have loads of data, and not much in the way of > resources, just use a CSV. You can't format it nicely, but if you're low on > resources then you probably don't want to anyway... > > Nick > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
