注意:这里需要导入两个架包。
commons-codec-1.11.jar
commons-lang3-3.7.jar
创建一个主函数测试
public static void main(String[] args) { String data = "跳梁小豆tlxd666"; //base64加密 String result = new String(Base64.encodeBase64(data.getBytes())); System.out.println("加密后:"+result); //base64解密 result = new String(Base64.decodeBase64(result)); System.out.println("解密后:"+result); }