Class StringBody
- java.lang.Object
-
- com.foxinmy.weixin4j.http.apache.content.AbstractContentBody
-
- com.foxinmy.weixin4j.http.apache.content.StringBody
-
- All Implemented Interfaces:
ContentBody
public class StringBody extends AbstractContentBody
Text body part backed by a byte array.- Since:
- 4.0
- See Also:
org.apache.http.entity.mime.MultipartEntityBuilder
-
-
Constructor Summary
Constructors Constructor Description StringBody(String text)
Create a StringBody from the specified text.StringBody(String text, ContentType contentType)
StringBody(String text, String mimeType, Charset charset)
Create a StringBody from the specified text, MIME type and character set.StringBody(String text, Charset charset)
Create a StringBody from the specified text and character set.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StringBody
create(String text)
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
static StringBody
create(String text, String mimeType, Charset charset)
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
static StringBody
create(String text, Charset charset)
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
long
getContentLength()
Returns the body descriptors content-length.String
getFilename()
Reader
getReader()
String
getTransferEncoding()
Returns the body descriptors transfer encoding.void
writeTo(OutputStream out)
-
Methods inherited from class com.foxinmy.weixin4j.http.apache.content.AbstractContentBody
getCharset, getContentType, getMimeType
-
-
-
-
Constructor Detail
-
StringBody
public StringBody(String text, String mimeType, Charset charset) throws UnsupportedEncodingException
Create a StringBody from the specified text, MIME type and character set.- Parameters:
text
- to be used for the body, notnull
mimeType
- the MIME type, notnull
charset
- the character set, may benull
, in which case the US-ASCII charset is used- Throws:
UnsupportedEncodingException
IllegalArgumentException
- if thetext
parameter is null
-
StringBody
public StringBody(String text, Charset charset) throws UnsupportedEncodingException
Create a StringBody from the specified text and character set. The MIME type is set to "text/plain".- Parameters:
text
- to be used for the body, notnull
charset
- the character set, may benull
, in which case the US-ASCII charset is used- Throws:
UnsupportedEncodingException
IllegalArgumentException
- if thetext
parameter is null
-
StringBody
public StringBody(String text) throws UnsupportedEncodingException
Create a StringBody from the specified text. The MIME type is set to "text/plain". The ASCII charset is used.- Parameters:
text
- to be used for the body, notnull
- Throws:
UnsupportedEncodingException
IllegalArgumentException
- if thetext
parameter is null
-
StringBody
public StringBody(String text, ContentType contentType)
- Since:
- 4.3
-
-
Method Detail
-
create
@Deprecated public static StringBody create(String text, String mimeType, Charset charset) throws IllegalArgumentException
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
- Throws:
IllegalArgumentException
- Since:
- 4.1
-
create
@Deprecated public static StringBody create(String text, Charset charset) throws IllegalArgumentException
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
- Throws:
IllegalArgumentException
- Since:
- 4.1
-
create
@Deprecated public static StringBody create(String text) throws IllegalArgumentException
Deprecated.(4.3) useStringBody(String, ContentType)
ororg.apache.http.entity.mime.MultipartEntityBuilder
- Throws:
IllegalArgumentException
- Since:
- 4.1
-
getReader
public Reader getReader()
-
writeTo
public void writeTo(OutputStream out) throws IOException
- Throws:
IOException
-
getTransferEncoding
public String getTransferEncoding()
Description copied from interface:ContentBody
Returns the body descriptors transfer encoding.- Returns:
- The transfer encoding. Must not be null, but "7bit", if no transfer-encoding was specified.
-
getContentLength
public long getContentLength()
Description copied from interface:ContentBody
Returns the body descriptors content-length.- Returns:
- Content length, if known, or -1, to indicate the absence of a content-length header.
-
getFilename
public String getFilename()
-
-