Package | Description |
---|---|
org.apache.http.entity |
Core HTTP entity implementations.
|
org.apache.http.nio.entity |
Core HTTP entity implementations with support for
asynchronous, event driven communication.
|
org.apache.http.nio.protocol |
Core HTTP protocol execution framework and HTTP protocol handlers
for asynchronous, event driven communication.
|
Modifier and Type | Field and Description |
---|---|
static ContentType |
ContentType.APPLICATION_ATOM_XML |
static ContentType |
ContentType.APPLICATION_FORM_URLENCODED |
static ContentType |
ContentType.APPLICATION_JSON |
static ContentType |
ContentType.APPLICATION_OCTET_STREAM |
static ContentType |
ContentType.APPLICATION_SVG_XML |
static ContentType |
ContentType.APPLICATION_XHTML_XML |
static ContentType |
ContentType.APPLICATION_XML |
static ContentType |
ContentType.DEFAULT_BINARY |
static ContentType |
ContentType.DEFAULT_TEXT |
static ContentType |
ContentType.MULTIPART_FORM_DATA |
static ContentType |
ContentType.TEXT_HTML |
static ContentType |
ContentType.TEXT_PLAIN |
static ContentType |
ContentType.TEXT_XML |
static ContentType |
ContentType.WILDCARD |
Modifier and Type | Method and Description |
---|---|
static ContentType |
ContentType.create(String mimeType)
Creates a new instance of
ContentType without a charset. |
static ContentType |
ContentType.create(String mimeType,
Charset charset)
Creates a new instance of
ContentType . |
static ContentType |
ContentType.create(String mimeType,
String charset)
Creates a new instance of
ContentType . |
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 the default value
DEFAULT_TEXT if not explicitly specified. |
static ContentType |
ContentType.parse(String s)
Parses textual representation of
Content-Type value. |
ContentType |
ContentType.withCharset(Charset charset)
Creates a new instance with this MIME type and the given Charset.
|
ContentType |
ContentType.withCharset(String charset)
Creates a new instance with this MIME type and the given Charset name.
|
Constructor and Description |
---|
ByteArrayEntity(byte[] b,
ContentType contentType) |
ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType) |
FileEntity(File file,
ContentType contentType) |
InputStreamEntity(InputStream instream,
ContentType contentType)
Creates an entity with a content type and unknown length.
|
InputStreamEntity(InputStream instream,
long length,
ContentType contentType) |
StringEntity(String string,
ContentType contentType)
Creates a StringEntity with the specified content and content type.
|
Constructor and Description |
---|
NByteArrayEntity(byte[] b,
ContentType contentType) |
NByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType) |
NFileEntity(File file,
ContentType contentType)
Creates new instance of NFileEntity from the given source
File
with the given content type. |
NFileEntity(File file,
ContentType contentType,
boolean useFileChannels)
Creates new instance of NFileEntity from the given source
File
with the given content type. |
NStringEntity(String s,
ContentType contentType)
Creates a NStringEntity with the specified content and content type.
|
Modifier and Type | Method and Description |
---|---|
protected void |
BasicAsyncRequestConsumer.onEntityEnclosed(HttpEntity entity,
ContentType contentType) |
protected void |
BasicAsyncResponseConsumer.onEntityEnclosed(HttpEntity entity,
ContentType contentType) |
protected abstract void |
AbstractAsyncRequestConsumer.onEntityEnclosed(HttpEntity entity,
ContentType contentType)
Invoked if the request message encloses a content entity.
|
protected abstract void |
AbstractAsyncResponseConsumer.onEntityEnclosed(HttpEntity entity,
ContentType contentType)
Invoked if the response message encloses a content entity.
|
Copyright © 2005-2014 The Apache Software Foundation. All Rights Reserved.