下载地址:http://commons.apache.org/proper/commons-codec/download_codec.cgi
import org.apache.commons.codec.binary.Base64;
/**
* Created by yster@foxmail.com
* 2018年4月9日 下午10:17:09
*/
public class JdkBase64 {
public static void main(String[] args) {
String key = "这是需要加密的文字";
key = encode(key);
System.out.println(key);
key = decode(key);
System.out.println(key);
}
/**
* Base64加密
* @param key
* @return
*/
public static String encode(String key){
byte[] bt = key.getBytes();
return (new Base64().encodeToString(bt));
}
/**
* Baes64解密
* @param key
* @return
*/
private static String decode(String key){
byte[] bt = new Base64().decode(key);
return new String(bt);
}
}