|
I want to use GZip compression on JSP page.
I've done this with a servlet using the following code:
OutputStream out1 =
response.getOutputStream();
out = new PrintWriter(new GZIPOutputStream(out1), false); response.setHeader("Content-Encoding", "gzip"); ......
How would I get the equivalent using
JSP?
TIA
Matt B.
|
