BASE64Encoder 加密和解密
在JAVA中要实现Base64的编码和解码是非常容易的,因为JDK中已经有提供有现成的类public class B64Demo { public static String getBASE64(String s) { if (s == null) return null; return (new sun.misc.BA...