content
private final byte[] content
Closeable, AutoCloseable, EntityDetails, HttpEntityString.OUTPUT_BUFFER_SIZEStringEntity(String string) StringEntity(String string,
Charset charset) StringEntity(String string,
Charset charset,
boolean chunked) StringEntity(String string,
ContentType contentType) StringEntity(String string,
ContentType contentType,
boolean chunked) StringEntity(String string,
ContentType contentType,
String contentEncoding,
boolean chunked) final voidclose()final InputStreamfinal longfinal booleanfinal booleanfinal voidwriteTo(OutputStream outStream) getContentEncoding, getContentType, getTrailerNames, getTrailers, isChunked, toString, writeTostring - content to be used. Not null.contentType - content type to be used. May be null, in which case the default
MIME type ContentType.TEXT_PLAIN is assumed.string - content to be used. Not null.charset - character set to be used. May be null, in which case the default
is StandardCharsets.ISO_8859_1 is assumedContentType.TEXT_PLAIN.string - content to be used. Not null.IllegalArgumentException - if the string parameter is nullHttpEntityisRepeatable in interface HttpEntityisRepeatable in class AbstractHttpEntityEntityDetailsHttpEntityRepeatable 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.
If this entity belongs to an incoming HTTP message, calling
InputStream.close() on the returned InputStream will
try to consume the complete entity content to keep the connection
alive. In cases where this is undesired, e.g. when only a small part
of the content is relevant and consuming the complete entity content
would be too inefficient, only the HTTP message from which
this entity was obtained should be closed (if supported).
IMPORTANT: Please note all entity implementations must ensure that
all allocated resources are properly deallocated after
the InputStream.close() method is invoked.
IOException - if the stream could not be createdHttpEntityIMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
writeTo in interface HttpEntitywriteTo in class AbstractHttpEntityoutStream - the output stream to write entity content toIOException - if an I/O error occursHttpEntitytrue. Self-contained entities should return
false. Wrapping entities should delegate this call
to the wrapped entity.true if the entity content is streamed,
false otherwiseIOException