public class Base64
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
decode(java.lang.String str)
Decode the Base64 string as bytes, ignoring illegal characters.
|
static java.lang.String |
encodeToString(byte[] bytes)
Encode the bytes as a Base64 string.
|
public static java.lang.String encodeToString(byte[] bytes)
See the Basic encoder in Base64
public static byte[] decode(java.lang.String str)
See the Mime Decoder in Base64