Commons codec
Commons项目中用来处理常用的编码方法的工具类包,例如 SHA1、MD5、Base64等等。
示例代码:
System.out.println("===============base64======================");
Base64 base64 = new Base64();
String s = base64.encodeToString("测试22222222222".getBytes());
System.out.println(s);
String s1 = new String(base64.decode(s));
System.out.println(s1);
评论