FileInputStream zipInStream = new FileInputStream(zipFile);
OutputStream browserOutStream = response.getOutputStream();
response.setContentLength((int)zipFile.length());
response.setContentType("application/zip");
// Call a routine to copy bytes from zipInStream to browserOutStream-Adrian Chris Howe wrote:
I'm trying to create a zip file on the fly. I've created it properly so that it will write to the file system, but I would prefer to write to the browser so that the user can download it. This seems like it should be so simple, but I'm missing it. TIA for any help! Chris
