|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.OutputStream
javax.servlet.ServletOutputStream
jodd.servlet.filter.GzipResponseStream
public class GzipResponseStream
GZIP response stream.
| Field Summary | |
|---|---|
protected byte[] |
buffer
The buffer through which all of our output bytes are passed. |
protected int |
bufferCount
The number of data bytes currently in the buffer. |
protected boolean |
closed
Has this stream been closed? |
protected int |
compressionThreshold
The threshold number which decides to compress or not. |
protected java.util.zip.GZIPOutputStream |
gzipstream
The underlying gzip output stream to which we should write data. |
protected int |
length
The content length past which we will not write, or -1 if there is no defined content length. |
protected javax.servlet.ServletOutputStream |
output
The underlying servlet output stream to which we should write data. |
protected javax.servlet.http.HttpServletResponse |
response
The response with which this servlet output stream is associated. |
| Constructor Summary | |
|---|---|
GzipResponseStream(javax.servlet.http.HttpServletResponse response)
Constructs a servlet output stream associated with the specified Response. |
|
| Method Summary | |
|---|---|
void |
close()
Closes this output stream, causing any buffered data to be flushed and any further output data to throw an IOException. |
boolean |
closed()
Returns true if this response stream been closed. |
void |
flush()
Flushes any buffered data for this output stream, which also causes the response to be committed. |
void |
flushToGZip()
|
protected void |
setBuffer(int threshold)
Sets the compressionThreshold number and create buffer for this size. |
void |
write(byte[] b)
Writes b.length bytes from the specified byte array to our
output stream. |
void |
write(byte[] b,
int off,
int len)
Writes len bytes from the specified byte array, starting at
the specified offset, to our output stream. |
void |
write(int b)
Writes the specified byte to our output stream. |
void |
writeToGZip(byte[] b,
int off,
int len)
|
| Methods inherited from class javax.servlet.ServletOutputStream |
|---|
print, print, print, print, print, print, print, println, println, println, println, println, println, println, println |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected int compressionThreshold
protected byte[] buffer
protected int bufferCount
protected java.util.zip.GZIPOutputStream gzipstream
protected boolean closed
protected int length
protected javax.servlet.http.HttpServletResponse response
protected javax.servlet.ServletOutputStream output
| Constructor Detail |
|---|
public GzipResponseStream(javax.servlet.http.HttpServletResponse response)
throws java.io.IOException
java.io.IOException| Method Detail |
|---|
protected void setBuffer(int threshold)
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in class java.io.OutputStreamjava.io.IOException
public void flush()
throws java.io.IOException
flush in interface java.io.Flushableflush in class java.io.OutputStreamjava.io.IOException
public void flushToGZip()
throws java.io.IOException
java.io.IOException
public void write(int b)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOException
public void write(byte[] b)
throws java.io.IOException
b.length bytes from the specified byte array to our
output stream.
write in class java.io.OutputStreamjava.io.IOException
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
len bytes from the specified byte array, starting at
the specified offset, to our output stream.
write in class java.io.OutputStreamb - byte array containing the bytes to be writtenoff - zero-relative starting offset of the bytes to be writtenlen - number of bytes to be written
java.io.IOException
public void writeToGZip(byte[] b,
int off,
int len)
throws java.io.IOException
java.io.IOExceptionpublic boolean closed()
true if this response stream been closed.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||