public class QuotedPrintable
extends java.lang.Object
Constructor and Description |
---|
QuotedPrintable() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(byte[] data)
decode the Q-P encoded input data.
|
static int |
decode(byte[] data,
java.io.OutputStream out)
decode the base Q-P encoded String data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
decode(java.lang.String data)
decode the UUEncided String data.
|
static int |
decode(java.lang.String data,
java.io.OutputStream out)
decode the Q-P encoded encoded String data writing it to the given output stream.
|
static byte[] |
encode(byte[] data)
encode the input data producing a Q-P encoded byte array.
|
static byte[] |
encode(byte[] data,
int off,
int length)
encode the input data producing a Q-P encoded byte array.
|
static int |
encode(byte[] data,
int off,
int length,
java.io.OutputStream out)
Q-P encode the byte data writing it to the given output stream.
|
static int |
encode(byte[] data,
java.io.OutputStream out)
Q-P encode the byte data writing it to the given output stream.
|
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data, int off, int length)
public static int encode(byte[] data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static int encode(byte[] data, int off, int length, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static byte[] decode(byte[] data)
public static byte[] decode(java.lang.String data)
public static int decode(java.lang.String data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static int decode(byte[] data, java.io.OutputStream out) throws java.io.IOException
data
- The array data to decode.out
- The output stream for the data.java.io.IOException