What does response.getOutputStream() return? I want to capture the reponse that is sent back to the browser (ie, the html that the jsp page produces) and save it as a file on the server. Does anyone have any examples? Thanks in advance.
Angela Lamb
Ranch Hand
Joined: Feb 22, 2001
Posts: 156
posted
0
It returns an OutputStream, just like the name says. You can use it to write to the page, but it doesn't give you the page contents.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Question about response.getOutputStream()