2013年2月27日
摘要: base64编码 1 /** 2 * 3 * @Title: encodeBase64 4 * @Description: 对数据进行base64编码 5 * @param value 需要编码的数据 6 * @param encodeType 需要编码的类型,如UTF-8,gb2312等 7 * @return String 编码后的字符串 8 */ 9 public static String encodeBase64(String value,String encodeType) {10 ... 阅读全文
posted @ 2013-02-27 13:43 l_veay 阅读(633) 评论(0) 推荐(0) 编辑