|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.geronimo.mail.util.Base64
public class Base64
Constructor Summary | |
---|---|
Base64()
|
Method Summary | |
---|---|
static byte[] |
decode(byte[] data)
decode the base 64 encoded input data. |
static byte[] |
decode(byte[] data,
int offset,
int length)
decode the base 64 encoded input data. |
static int |
decode(byte[] data,
OutputStream out)
decode the base 64 encoded String data writing it to the given output stream, whitespace characters will be ignored. |
static byte[] |
decode(String data)
decode the base 64 encoded String data - whitespace will be ignored. |
static int |
decode(String data,
OutputStream out)
decode the base 64 encoded String data writing it to the given output stream, whitespace characters will be ignored. |
static byte[] |
encode(byte[] data)
encode the input data producing a base 64 encoded byte array. |
static byte[] |
encode(byte[] data,
int offset,
int length)
encode the input data producing a base 64 encoded byte array. |
static int |
encode(byte[] data,
int off,
int length,
OutputStream out)
Encode the byte data to base 64 writing it to the given output stream. |
static int |
encode(byte[] data,
OutputStream out)
Encode the byte data to base 64 writing it to the given output stream. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Base64()
Method Detail |
---|
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data, int offset, int length)
data
- The data array to encode.offset
- The starting offset within the data array.length
- The length of the data to encode.
public static int encode(byte[] data, OutputStream out) throws IOException
IOException
public static int encode(byte[] data, int off, int length, OutputStream out) throws IOException
IOException
public static byte[] decode(byte[] data)
public static byte[] decode(byte[] data, int offset, int length)
data
- The data array to decode.offset
- The offset of the data array.length
- The length of data to decode.
public static byte[] decode(String data)
public static int decode(String data, OutputStream out) throws IOException
IOException
public static int decode(byte[] data, OutputStream out) throws IOException
data
- The array data to decode.out
- The output stream for the data.
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |