Hi Guys,
I'm hoping some of you can help me with this issue which I've been trying to solve.
This is for a jsp-servlet web app using
java 1.5. This is the scenario :
- I need to create 3 csv files
- I need to compress these 3 csv files into one zip file
- I need to return the zip file in the response back to the user
Here is the caveat, no writing-reading from the disk allowed. Meaning that the csv and zip files can't be stored or read from the disk. Everything must be created in memory at runtime(and of course disposed of when the
servlet is done).
I know there are dozens of examples on line unfortunately almost all are disk read-write based. Any help would be appreciated.