public class Base64 extends Object
| Constructor and Description |
|---|
Base64() |
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
decode(byte[] data)
decode the base 64 encoded input data.
|
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 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.
|
public static byte[] encode(byte[] data)
public static int encode(byte[] data,
OutputStream out)
throws IOException
IOExceptionpublic static int encode(byte[] data,
int off,
int length,
OutputStream out)
throws IOException
IOExceptionpublic static byte[] decode(byte[] data)
public static byte[] decode(String data)
public static int decode(String data, OutputStream out) throws IOException
IOExceptionCopyright © 2015. All rights reserved.