Package | Description |
---|---|
org.apache.http |
Core HTTP components based on the blocking I/O model.
|
org.apache.http.entity |
Common HTTP entity implementations.
|
org.apache.http.impl.entity |
Default implementations for interfaces in
org.apache.http.entity and provides utility
classes for serialization and deserialization of HTTP content entities. |
org.apache.http.message |
Basic HTTP message implementations.
|
org.apache.http.util |
Modifier and Type | Method and Description |
---|---|
HttpEntity |
HttpResponse.getEntity()
Obtains the message entity of this response, if any.
|
HttpEntity |
HttpEntityEnclosingRequest.getEntity()
Returns the entity associated with this request.
|
Modifier and Type | Method and Description |
---|---|
void |
HttpResponse.setEntity(HttpEntity entity)
Associates a response entity with this response.
|
void |
HttpEntityEnclosingRequest.setEntity(HttpEntity entity)
Associates the entity with this request.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractHttpEntity
Abstract base class for entities.
|
class |
BasicHttpEntity
A generic streamed, non-repeatable entity that obtains its content
from an
InputStream . |
class |
BufferedHttpEntity
A wrapping entity that buffers it content if necessary.
|
class |
ByteArrayEntity
A self contained, repeatable entity that obtains its content from a byte array.
|
class |
EntityTemplate
Entity that delegates the process of content generation
to a
ContentProducer . |
class |
FileEntity
A self contained, repeatable entity that obtains its content from a file.
|
class |
HttpEntityWrapper
Base class for wrapping entities.
|
class |
InputStreamEntity
A streamed, non-repeatable entity that obtains its content from
an
InputStream . |
class |
SerializableEntity
A streamed entity that obtains its content from a
Serializable . |
class |
StringEntity
A self contained, repeatable entity that obtains its content from
a
String . |
Modifier and Type | Field and Description |
---|---|
protected HttpEntity |
HttpEntityWrapper.wrappedEntity
The wrapped entity.
|
Modifier and Type | Method and Description |
---|---|
static ContentType |
ContentType.get(HttpEntity entity)
Extracts
Content-Type value from HttpEntity exactly as
specified by the Content-Type header of the entity. |
static ContentType |
ContentType.getOrDefault(HttpEntity entity)
Extracts
Content-Type value from HttpEntity or returns default value
if not explicitly specified. |
Constructor and Description |
---|
BufferedHttpEntity(HttpEntity entity)
Creates a new buffered entity wrapper.
|
HttpEntityWrapper(HttpEntity wrapped)
Creates a new entity wrapper.
|
Modifier and Type | Method and Description |
---|---|
HttpEntity |
EntityDeserializer.deserialize(SessionInputBuffer inbuffer,
HttpMessage message)
Creates an
HttpEntity based on properties of the given message. |
Modifier and Type | Method and Description |
---|---|
void |
EntitySerializer.serialize(SessionOutputBuffer outbuffer,
HttpMessage message,
HttpEntity entity)
Writes out the content of the given HTTP entity to the session output
buffer based on properties of the given HTTP message.
|
Modifier and Type | Method and Description |
---|---|
HttpEntity |
BasicHttpResponse.getEntity() |
HttpEntity |
BasicHttpEntityEnclosingRequest.getEntity() |
Modifier and Type | Method and Description |
---|---|
void |
BasicHttpResponse.setEntity(HttpEntity entity) |
void |
BasicHttpEntityEnclosingRequest.setEntity(HttpEntity entity) |
Modifier and Type | Method and Description |
---|---|
static void |
EntityUtils.consume(HttpEntity entity)
Ensures that the entity content is fully consumed and the content stream, if exists,
is closed.
|
static void |
EntityUtils.consumeQuietly(HttpEntity entity)
Ensures that the entity content is fully consumed and the content stream, if exists,
is closed.
|
static String |
EntityUtils.getContentCharSet(HttpEntity entity)
Deprecated.
(4.1.3) use
ContentType.getOrDefault(HttpEntity) |
static String |
EntityUtils.getContentMimeType(HttpEntity entity)
Deprecated.
(4.1.3) use
ContentType.getOrDefault(HttpEntity) |
static byte[] |
EntityUtils.toByteArray(HttpEntity entity)
Read the contents of an entity and return it as a byte array.
|
static String |
EntityUtils.toString(HttpEntity entity)
Read the contents of an entity and return it as a String.
|
static String |
EntityUtils.toString(HttpEntity entity,
Charset defaultCharset)
Get the entity content as a String, using the provided default character set
if none is found in the entity.
|
static String |
EntityUtils.toString(HttpEntity entity,
String defaultCharset)
Get the entity content as a String, using the provided default character set
if none is found in the entity.
|
Copyright © 2005–2013 The Apache Software Foundation. All rights reserved.