在java Base64编码数据解码问题,怎么解决?

在java Base64编码数据解码问题,怎么解决


茅侃侃
浏览 774回答 1
1回答

翻过高山走不出你

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; } }
打开App,查看更多内容
随时随地看视频慕课网APP