It won't let me do response.getOutputStream. I get an error that says "getWriter() has already been called for this response"
----- Original Message ---- From: Adrian Crum <[EMAIL PROTECTED]> To: [email protected] Sent: Wednesday, November 21, 2007 9:45:47 AM Subject: Re: Write to Browser 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 > > >
