摘要: /** * 将字符串进行Base64编码 * * @param s 被编码的字符串 * @return 编码后的字符串 */ public static String encoderBASE64(String s) { if (s == null) { return null; }... 阅读全文
posted @ 2017-05-10 14:54 jason.bai 阅读(415) 评论(0) 推荐(0) 编辑