public class ByteArrayBody extends AbstractContentBody
MultipartEntityBuilder
Constructor and Description |
---|
ByteArrayBody(byte[] data,
org.apache.http.entity.ContentType contentType,
String filename) |
ByteArrayBody(byte[] data,
String filename)
Creates a new ByteArrayBody.
|
ByteArrayBody(byte[] data,
String mimeType,
String filename)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
String |
getCharset()
The body descriptors character set, defaulted appropriately for the MIME type.
|
long |
getContentLength()
Returns the body descriptors content-length.
|
String |
getFilename() |
String |
getTransferEncoding()
Returns the body descriptors transfer encoding.
|
void |
writeTo(OutputStream out) |
getContentType, getMediaType, getMimeType, getSubType
@Deprecated public ByteArrayBody(byte[] data, String mimeType, String filename)
data
- The contents of the file contained in this part.mimeType
- The MIME type of the file contained in this part.filename
- The name of the file contained in this part.public ByteArrayBody(byte[] data, org.apache.http.entity.ContentType contentType, String filename)
public ByteArrayBody(byte[] data, String filename)
data
- The contents of the file contained in this part.filename
- The name of the file contained in this part.public String getFilename()
public void writeTo(OutputStream out) throws IOException
IOException
public String getCharset()
ContentDescriptor
The body descriptors character set, defaulted appropriately for the MIME type.
For TEXT
types, this will be defaulted to us-ascii
.
For other types, when the charset parameter is missing this property will be null.
getCharset
in interface ContentDescriptor
getCharset
in class AbstractContentBody
TEXT
types, when unset will
be set to default us-ascii
. For other types, when unset,
null will be returned.public String getTransferEncoding()
ContentDescriptor
public long getContentLength()
ContentDescriptor
Copyright © 1999–2022 The Apache Software Foundation. All rights reserved.