推荐第一种 效率更高。
第一种:java8 新版本
@Test
public void test1(){
//现在Base64编码 import java.util.Base64;
String s = "zhangjilin";
String encodeToString = Base64.getEncoder().encodeToString(s.getBytes());
System.out.println(encodeToString);
//解码
byte[] decode = Base64.getDecoder().decode(encodeToString);
System.out.println(new String(decode));
}
第二种:旧版本
@Test
public void test1(){
//之前 import org.apache.commons.codec.binary.Base64;
String s = "zhangjilin";
String s1 = Base64.encodeBase64String(s.getBytes());
System.out.println(s1);
System.out.println(new String(Base64.decodeBase64(s1)));
}