public class QuotedPrintableCodec extends java.lang.Object implements BinaryEncoder, BinaryDecoder, StringEncoder, StringDecoder
The Quoted-Printable encoding is intended to represent data that largely consists of octets that correspond to printable characters in the ASCII character set. It encodes the data in such a way that the resulting octets are unlikely to be modified by mail transport. If the data being encoded are mostly ASCII text, the encoded form of the data remains largely recognizable by humans. A body which is entirely ASCII may also be encoded in Quoted-Printable to ensure the integrity of the data should the message pass through a character- translating, and/or line-wrapping gateway.
Note:
Depending on the selected strict
parameter, this class will implement a different set of rules of the
quoted-printable spec:
strict=false
: only rules #1 and #2 are implemented
strict=true
: all rules #1 through #5 are implemented
This class is immutable and thread-safe.
Constructor and Description |
---|
QuotedPrintableCodec()
Default constructor, assumes default Charset of
StandardCharsets.UTF_8 |
QuotedPrintableCodec(boolean strict)
Constructor which allows for the selection of the strict mode.
|
QuotedPrintableCodec(java.nio.charset.Charset charset)
Constructor which allows for the selection of a default Charset.
|
QuotedPrintableCodec(java.nio.charset.Charset charset,
boolean strict)
Constructor which allows for the selection of a default Charset and strict mode.
|
QuotedPrintableCodec(java.lang.String charsetName)
Constructor which allows for the selection of a default Charset.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
decode(byte[] bytes)
Decodes an array of quoted-printable characters into an array of original bytes.
|
java.lang.Object |
decode(java.lang.Object obj)
Decodes a quoted-printable object into its original form.
|
java.lang.String |
decode(java.lang.String sourceStr)
Decodes a quoted-printable string into its original form using the default string Charset.
|
java.lang.String |
decode(java.lang.String sourceStr,
java.nio.charset.Charset sourceCharset)
Decodes a quoted-printable string into its original form using the specified string Charset.
|
java.lang.String |
decode(java.lang.String sourceStr,
java.lang.String sourceCharset)
Decodes a quoted-printable string into its original form using the specified string Charset.
|
static byte[] |
decodeQuotedPrintable(byte[] bytes)
Decodes an array quoted-printable characters into an array of original bytes.
|
byte[] |
encode(byte[] bytes)
Encodes an array of bytes into an array of quoted-printable 7-bit characters.
|
java.lang.Object |
encode(java.lang.Object obj)
Encodes an object into its quoted-printable safe form.
|
java.lang.String |
encode(java.lang.String sourceStr)
Encodes a string into its quoted-printable form using the default string Charset.
|
java.lang.String |
encode(java.lang.String sourceStr,
java.nio.charset.Charset sourceCharset)
Encodes a string into its quoted-printable form using the specified Charset.
|
java.lang.String |
encode(java.lang.String sourceStr,
java.lang.String sourceCharset)
Encodes a string into its quoted-printable form using the specified Charset.
|
static byte[] |
encodeQuotedPrintable(java.util.BitSet printable,
byte[] bytes)
Encodes an array of bytes into an array of quoted-printable 7-bit characters.
|
static byte[] |
encodeQuotedPrintable(java.util.BitSet printable,
byte[] bytes,
boolean strict)
Encodes an array of bytes into an array of quoted-printable 7-bit characters.
|
java.nio.charset.Charset |
getCharset()
Gets the default Charset name used for string decoding and encoding.
|
java.lang.String |
getDefaultCharset()
Gets the default Charset name used for string decoding and encoding.
|
public QuotedPrintableCodec()
StandardCharsets.UTF_8
public QuotedPrintableCodec(boolean strict)
strict
- if true
, soft line breaks will be usedpublic QuotedPrintableCodec(java.nio.charset.Charset charset)
charset
- the default string Charset to use.public QuotedPrintableCodec(java.nio.charset.Charset charset, boolean strict)
charset
- the default string Charset to use.strict
- if true
, soft line breaks will be usedpublic QuotedPrintableCodec(java.lang.String charsetName) throws java.nio.charset.IllegalCharsetNameException, java.lang.IllegalArgumentException, java.nio.charset.UnsupportedCharsetException
charsetName
- the default string Charset to use.java.nio.charset.UnsupportedCharsetException
- If no support for the named Charset is available
in this instance of the Java virtual machinejava.lang.IllegalArgumentException
- If the given charsetName is nulljava.nio.charset.IllegalCharsetNameException
- If the given Charset name is illegalpublic static final byte[] encodeQuotedPrintable(java.util.BitSet printable, byte[] bytes)
This function implements a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in RFC 1521 and is suitable for encoding binary data and unformatted text.
printable
- bitset of characters deemed quoted-printablebytes
- array of bytes to be encodedpublic static final byte[] encodeQuotedPrintable(java.util.BitSet printable, byte[] bytes, boolean strict)
Depending on the selection of the strict
parameter, this function either implements the full ruleset
or only a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in
RFC 1521 and is suitable for encoding binary data and unformatted text.
printable
- bitset of characters deemed quoted-printablebytes
- array of bytes to be encodedstrict
- if true
the full ruleset is used, otherwise only rule #1 and rule #2public static final byte[] decodeQuotedPrintable(byte[] bytes) throws DecoderException
This function fully implements the quoted-printable encoding specification (rule #1 through rule #5) as defined in RFC 1521.
bytes
- array of quoted-printable charactersDecoderException
- Thrown if quoted-printable decoding is unsuccessfulpublic byte[] encode(byte[] bytes)
Depending on the selection of the strict
parameter, this function either implements the full ruleset
or only a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in
RFC 1521 and is suitable for encoding binary data and unformatted text.
encode
in interface BinaryEncoder
bytes
- array of bytes to be encodedpublic byte[] decode(byte[] bytes) throws DecoderException
This function fully implements the quoted-printable encoding specification (rule #1 through rule #5) as defined in RFC 1521.
decode
in interface BinaryDecoder
bytes
- array of quoted-printable charactersDecoderException
- Thrown if quoted-printable decoding is unsuccessfulpublic java.lang.String encode(java.lang.String sourceStr) throws EncoderException
Depending on the selection of the strict
parameter, this function either implements the full ruleset
or only a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in
RFC 1521 and is suitable for encoding binary data and unformatted text.
encode
in interface StringEncoder
sourceStr
- string to convert to quoted-printable formEncoderException
- Thrown if quoted-printable encoding is unsuccessfulgetCharset()
public java.lang.String decode(java.lang.String sourceStr, java.nio.charset.Charset sourceCharset) throws DecoderException
sourceStr
- quoted-printable string to convert into its original formsourceCharset
- the original string CharsetDecoderException
- Thrown if quoted-printable decoding is unsuccessfulpublic java.lang.String decode(java.lang.String sourceStr, java.lang.String sourceCharset) throws DecoderException, java.io.UnsupportedEncodingException
sourceStr
- quoted-printable string to convert into its original formsourceCharset
- the original string CharsetDecoderException
- Thrown if quoted-printable decoding is unsuccessfuljava.io.UnsupportedEncodingException
- Thrown if Charset is not supportedpublic java.lang.String decode(java.lang.String sourceStr) throws DecoderException
decode
in interface StringDecoder
sourceStr
- quoted-printable string to convert into its original formDecoderException
- Thrown if quoted-printable decoding is unsuccessful. Thrown if Charset is not supported.getCharset()
public java.lang.Object encode(java.lang.Object obj) throws EncoderException
encode
in interface Encoder
obj
- string to convert to a quoted-printable formEncoderException
- Thrown if quoted-printable encoding is not applicable to objects of this type or if encoding is
unsuccessfulpublic java.lang.Object decode(java.lang.Object obj) throws DecoderException
decode
in interface Decoder
obj
- quoted-printable object to convert into its original formDecoderException
- Thrown if the argument is not a String
or byte[]
. Thrown if a failure
condition is encountered during the decode process.public java.nio.charset.Charset getCharset()
public java.lang.String getDefaultCharset()
public java.lang.String encode(java.lang.String sourceStr, java.nio.charset.Charset sourceCharset)
Depending on the selection of the strict
parameter, this function either implements the full ruleset
or only a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in
RFC 1521 and is suitable for encoding binary data and unformatted text.
sourceStr
- string to convert to quoted-printable formsourceCharset
- the Charset for sourceStrpublic java.lang.String encode(java.lang.String sourceStr, java.lang.String sourceCharset) throws java.io.UnsupportedEncodingException
Depending on the selection of the strict
parameter, this function either implements the full ruleset
or only a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in
RFC 1521 and is suitable for encoding binary data and unformatted text.
sourceStr
- string to convert to quoted-printable formsourceCharset
- the Charset for sourceStrjava.io.UnsupportedEncodingException
- Thrown if the Charset is not supportedCopyright © 2010 - 2020 Adobe. All Rights Reserved