| Constructor and Description | 
|---|
| Base64Utils() | 
| Modifier and Type | Method and Description | 
|---|---|
| static byte[] | decode(byte[] src)Base64-decode the given byte array. | 
| static byte[] | decodeFromString(String src)Base64-decode the given byte array from an UTF-8 String. | 
| static byte[] | decodeFromUrlSafeString(String src)Base64-decode the given byte array from an UTF-8 String using the RFC 4648
 "URL and Filename Safe Alphabet". | 
| static byte[] | decodeUrlSafe(byte[] src)Base64-decode the given byte array using the RFC 4648
 "URL and Filename Safe Alphabet". | 
| static byte[] | encode(byte[] src)Base64-encode the given byte array. | 
| static String | encodeToString(byte[] src)Base64-encode the given byte array to a String. | 
| static String | encodeToUrlSafeString(byte[] src)Base64-encode the given byte array to a String using the RFC 4648
 "URL and Filename Safe Alphabet". | 
| static byte[] | encodeUrlSafe(byte[] src)Base64-encode the given byte array using the RFC 4648
 "URL and Filename Safe Alphabet". | 
public static byte[] encode(byte[] src)
src - the original byte arraypublic static byte[] decode(byte[] src)
src - the encoded byte arraypublic static byte[] encodeUrlSafe(byte[] src)
src - the original byte arraypublic static byte[] decodeUrlSafe(byte[] src)
src - the encoded byte arraypublic static String encodeToString(byte[] src)
src - the original byte arraypublic static byte[] decodeFromString(String src)
src - the encoded UTF-8 Stringpublic static String encodeToUrlSafeString(byte[] src)
src - the original byte arraypublic static byte[] decodeFromUrlSafeString(String src)
src - the encoded UTF-8 String