使用BASE64编码解码

来源:互联网 发布:微星在淘宝 编辑:程序博客网 时间:2024/05/17 17:16

之前不知道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; } }

0 0