@Contract(threading=IMMUTABLE_CONDITIONAL) public class ByteArrayEntity extends AbstractHttpEntity
| 构造器和说明 |
|---|
ByteArrayEntity(byte[] b,
ContentType contentType) |
ByteArrayEntity(byte[] b,
ContentType contentType,
boolean chunked) |
ByteArrayEntity(byte[] b,
ContentType contentType,
String contentEncoding) |
ByteArrayEntity(byte[] b,
ContentType contentType,
String contentEncoding,
boolean chunked) |
ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType) |
ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
boolean chunked) |
ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
String contentEncoding) |
ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
String contentEncoding,
boolean chunked) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
close() |
InputStream |
getContent()
Returns a content stream of the entity.
|
long |
getContentLength()
Returns length of the entity, if known.
|
boolean |
isRepeatable()
Tells if the entity is capable of producing its data more than once.
|
boolean |
isStreaming()
Tells whether this entity depends on an underlying stream.
|
void |
writeTo(OutputStream outStream)
Writes the entity content out to the output stream.
|
getContentEncoding, getContentType, getTrailerNames, getTrailers, isChunked, toString, writeTopublic ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
String contentEncoding,
boolean chunked)
public ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
String contentEncoding)
public ByteArrayEntity(byte[] b,
ContentType contentType,
String contentEncoding,
boolean chunked)
public ByteArrayEntity(byte[] b,
ContentType contentType,
String contentEncoding)
public ByteArrayEntity(byte[] b,
ContentType contentType,
boolean chunked)
public ByteArrayEntity(byte[] b,
ContentType contentType)
public ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType,
boolean chunked)
public ByteArrayEntity(byte[] b,
int off,
int len,
ContentType contentType)
public final boolean isRepeatable()
HttpEntityisRepeatable 在接口中 HttpEntityisRepeatable 在类中 AbstractHttpEntitypublic final long getContentLength()
EntityDetailspublic final InputStream getContent()
HttpEntityRepeatable 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.
HttpEntity.isRepeatable()public final void writeTo(OutputStream outStream) throws IOException
HttpEntityIMPORTANT: Please note all entity implementations must ensure that all allocated resources are properly deallocated when this method returns.
writeTo 在接口中 HttpEntitywriteTo 在类中 AbstractHttpEntityoutStream - the output stream to write entity content toIOException - if an I/O error occurspublic final boolean isStreaming()
HttpEntitytrue. Self-contained entities should return
false. Wrapping entities should delegate this call
to the wrapped entity.true if the entity content is streamed,
false otherwisepublic final void close()
throws IOException
IOExceptionCopyright © 2023. All rights reserved.