public abstract class AbstractHttpEntity extends Object implements HttpEntity
HttpEntity.| Modifier and Type | Method and Description |
|---|---|
void |
consumeContent()
Deprecated.
(4.1) Either use
HttpEntity.getContent() and call InputStream.close() on that;
otherwise call HttpEntity.writeTo(java.io.OutputStream) which is required to free the resources. |
Header |
getContentEncoding()
Obtains the Content-Encoding header.
|
Header |
getContentType()
Obtains the Content-Type header.
|
boolean |
isChunked()
Obtains the 'chunked' flag.
|
void |
setChunked(boolean b)
Specifies the 'chunked' flag.
|
void |
setContentEncoding(Header contentEncoding)
Specifies the Content-Encoding header.
|
void |
setContentEncoding(String ceString)
Specifies the Content-Encoding header, as a string.
|
void |
setContentType(Header contentType)
Specifies the Content-Type header.
|
void |
setContentType(String ctString)
Specifies the Content-Type header, as a string.
|
String |
toString() |
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitgetContent, getContentLength, isRepeatable, isStreaming, writeTopublic Header getContentType()
contentType attribute.getContentType in interface HttpEntitynullpublic Header getContentEncoding()
contentEncoding attribute.getContentEncoding in interface HttpEntitynullpublic boolean isChunked()
chunked attribute.isChunked in interface HttpEntitypublic void setContentType(Header contentType)
contentType attribute.contentType - the new Content-Type header, or
null to unsetpublic void setContentType(String ctString)
setContentType(Header).ctString - the new Content-Type header, or
null to unsetpublic void setContentEncoding(Header contentEncoding)
contentEncoding attribute.contentEncoding - the new Content-Encoding header, or
null to unsetpublic void setContentEncoding(String ceString)
setContentEncoding(Header).ceString - the new Content-Encoding header, or
null to unsetpublic void setChunked(boolean b)
Note that the chunked setting is a hint only. If using HTTP/1.0, chunking is never performed. Otherwise, even if chunked is false, HttpClient must use chunk coding if the entity content length is unknown (-1).
The default implementation sets the value of the
chunked attribute.
b - the new 'chunked' flag@Deprecated public void consumeContent() throws IOException
HttpEntity.getContent() and call InputStream.close() on that;
otherwise call HttpEntity.writeTo(java.io.OutputStream) which is required to free the resources.consumeContent in interface HttpEntityIOException - if an I/O error occurs.and #writeTo(OutputStream)Copyright © 2010 - 2020 Adobe. All Rights Reserved