public class DecompressingEntity extends HttpEntityWrapper
HttpEntity implementations.wrappedEntity| Constructor and Description |
|---|
DecompressingEntity(HttpEntity wrapped,
InputStreamFactory inputStreamFactory)
Creates a new
DecompressingEntity. |
| 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.
|
void |
writeTo(java.io.OutputStream outstream)
Writes the entity content out to the output stream.
|
consumeContent, getContentType, isChunked, isRepeatable, isStreamingpublic DecompressingEntity(HttpEntity wrapped, InputStreamFactory inputStreamFactory)
DecompressingEntity.wrapped - the non-null HttpEntity to be wrappedinputStreamFactory - factory to create decompressing stream.public 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 occurspublic 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.