您的位置:首页 > 其它

使用BASE64编码解码

2015-10-30 11:24 477 查看
之前不知道base64 网上看了些资料 将可以使用的代码转了过来 作为总结

<span style="white-space:pre"> </span>import sun.misc.BASE64Encoder;
import sun.misc.BASE64Decoder;

// 将 s 进行 BASE64 编码
public static String getBASE64(String s) {
if (s == null) return null;
return (new sun.misc.BASE64Encoder()).encode( s.getBytes() );
}

// 将 BASE64 编码的字符串 s 进行解码
public static String getFromBASE64(String s) {
if (s == null) return null;
BASE64Decoder decoder = new BASE64Decoder();
try {
byte[] b = decoder.decodeBuffer(s);
return new String(b);
} catch (Exception e) {
return null;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: