spring常用工具类,引入spring即可使用Base64Utils
byte[] encode(byte[] src) 字节数组编码后并返回
byte[] decode(byte[] src) 字节数组解码后并返回
String encodeToString(byte[] src) 字节数组编码后并返回字符串
byte[] decodeFromString(String src) 字符串解码后并返回字节数组
对URL进行编码解码,使用下面的方法:
byte[] encodeUrlSafe(byte[] src) 字节数组编码后并返回
byte[] decodeUrlSafe(byte[] src) 字节数组解码后并返回
String encodeToUrlSafeString(byte[] src) 字节数组编码后并返回字符串
byte[] decodeFromUrlSafeString(String src) 字符串解码后并返回字节数组