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, isStreaming
public 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
HttpEntity
Repeatable
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 HttpEntity
getContent
in class HttpEntityWrapper
java.io.IOException
- if the stream could not be createdHttpEntity.isRepeatable()
public void writeTo(java.io.OutputStream outstream) throws java.io.IOException
HttpEntity
IMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
writeTo
in interface HttpEntity
writeTo
in class HttpEntityWrapper
outstream
- the output stream to write entity content tojava.io.IOException
- if an I/O error occurspublic Header getContentEncoding()
HttpEntity
getContentEncoding
in interface HttpEntity
getContentEncoding
in class HttpEntityWrapper
null
if the content encoding is unknownpublic long getContentLength()
HttpEntity
getContentLength
in interface HttpEntity
getContentLength
in class HttpEntityWrapper
Long.MAX_VALUE
,
a negative number is returned.