转自:https://blog.csdn.net/jerryhh_2012/article/details/51605513
对Base64编码的支持已经被加入到Java 8官方库中,这样不需要使用第三方库就可以进行Base64编码,例子代码如下:
String orig = "hello world!";
String desc = Base64.getEncoder().encodeToString(orig.getBytes(StandardCharsets.UTF_8));
System.out.println("加密后的字符串为:"+desc);
String unDecodeStr=new String(Base64.getDecoder().decode(desc),StandardCharsets.UTF_8);
System.out.println("解密后的字符串为"+unDecodeStr);
加密后的字符串为:aGVsbG8gd29ybGQh
解密后的字符串为hello world!
补充apache的:
import org.apache.commons.codec.binary.Base64;
byte[] encodeBase64 = Base64.encodeBase64(message.getBytes("UTF-8"));
System.out.println("Result:" + new String(encodeBase64));