public class GzipCompressingEntity extends HttpEntityWrapper
writing.wrappedEntity| Constructor and Description |
|---|
GzipCompressingEntity(HttpEntity entity) |
| Modifier and Type | Method and Description |
|---|---|
java.io.InputStream |
getContent()
Returns a content stream of the entity.
|
Header |
getContentEncoding()
Obtains the Content-Encoding header, if known.
|
long |
getContentLength()
Tells the length of the content, if known.
|
boolean |
isChunked()
Tells about chunked encoding for this entity.
|
void |
writeTo(java.io.OutputStream outstream)
Writes the entity content out to the output stream.
|
consumeContent, getContentType, isRepeatable, isStreamingpublic GzipCompressingEntity(HttpEntity entity)
public Header getContentEncoding()
HttpEntitygetContentEncoding in interface HttpEntitygetContentEncoding in class HttpEntityWrappernull if the content encoding is unknownpublic long getContentLength()
HttpEntitygetContentLength in interface HttpEntitygetContentLength in class HttpEntityWrapperLong.MAX_VALUE,
a negative number is returned.public boolean isChunked()
HttpEntityThe behavior of wrapping entities is implementation dependent, but should respect the primary purpose.
isChunked in interface HttpEntityisChunked in class HttpEntityWrappertrue if chunked encoding is preferred for this
entity, or false if it is notpublic java.io.InputStream getContent()
throws java.io.IOException
HttpEntityRepeatable entities are expected
to create a new instance of InputStream for each invocation
of this method and therefore can be consumed multiple times.
Entities that are not repeatable are expected
to return the same InputStream instance and therefore
may not be consumed more than once.
IMPORTANT: Please note all entity implementations must ensure that
all allocated resources are properly deallocated after
the InputStream.close() method is invoked.
getContent in interface HttpEntitygetContent in class HttpEntityWrapperjava.io.IOException - if the stream could not be createdHttpEntity.isRepeatable()public void writeTo(java.io.OutputStream outstream)
throws java.io.IOException
HttpEntityIMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
writeTo in interface HttpEntitywriteTo in class HttpEntityWrapperoutstream - the output stream to write entity content tojava.io.IOException - if an I/O error occurs