首页>代码>java swing聊天室客户端+nodejs服务器实现简单的聊天系统>/chat/client/src/main/java/cn/jsxwsl/chat/client/Base64Util.java
package cn.jsxwsl.chat.client; import java.util.Base64; import java.util.Base64.Decoder; public class Base64Util { // ���� public static String getFromBase64(String s) { String result = null; if (s != null) { Decoder d = Base64.getDecoder(); try { byte[] decode = d.decode(s); result = new String(decode, "utf-8"); } catch (Exception e) { e.printStackTrace(); } } return result; } }
最近下载更多
qazzaq123 LV20
2021年2月8日
jaden12 LV3
2019年10月6日
black-shuai LV6
2019年5月23日
略略略1555 LV1
2019年4月22日
你好看 LV1
2019年1月7日
xiaoxiongmao LV2
2018年11月20日
shaogongzi LV1
2018年10月10日
jarlove LV7
2018年8月2日
我怕怕 LV3
2018年7月12日
Peter_ LV6
2018年7月4日