为了账号安全,请及时绑定邮箱和手机立即绑定

windows有可直接调用的base64编码解码函数吗解决思路?

windows有可直接调用的base64编码解码函数吗解决思路?

慕容森 2018-09-19 10:06:03
windows有可直接调用的base64编码解码函数吗解决思路
查看完整描述

1 回答

?
DIEA

TA贡献1820条经验 获得超2个赞

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;
}
}

查看完整回答
反对 回复 2018-10-04
  • 1 回答
  • 0 关注
  • 1442 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信