public class Base64 extends Object
Constructor and Description |
---|
Base64() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(char[] chars)
Decodes base64 characters into bytes.
|
static byte[] |
decode(String encodedString)
Decodes a base64 string into bytes.
|
static String |
encode(byte[] bytes,
boolean newlines)
Encodes an entire byte array into a Base64 string, with optional newlines
after every 76 characters.
|
static String |
encode(byte[] bytes,
int off,
int len,
boolean newlines)
Encodes specified bytes into a Base64 string, with optional newlines
after every 76 characters.
|
static String |
encode(char[] chars,
boolean newlines)
Encodes an entire chars array into a Base64 string, with optional
newlines after every 76 characters.
|
static String |
encode(char[] chars,
String charset,
boolean newlines)
Encodes an entire chars array into a Base64 string, with optional
newlines after every 76 characters.
|
public static byte[] decode(char[] chars)
chars
- The characters array to decode.public static byte[] decode(String encodedString)
encodedString
- The string to decode.public static String encode(byte[] bytes, boolean newlines)
bytes
- The byte array to encode.newlines
- Indicates whether or not newlines are desired.public static String encode(byte[] bytes, int off, int len, boolean newlines)
bytes
- The byte array to encode.off
- The starting offset.len
- The number of bytes to encode.newlines
- Indicates whether or not newlines are desired.public static String encode(char[] chars, boolean newlines)
chars
- The characters array to encode.newlines
- Indicates whether or not newlines are desired.public static String encode(char[] chars, String charset, boolean newlines)
chars
- The characters array to encode.charset
- The character set to use for the character to byte conversion.newlines
- Indicates whether or not newlines are desired.Copyright © 2005–2017. All rights reserved.