2016 - 2024

感恩一路有你

base64编码在线转换 怎么将base64编码提交到后台?

浏览量:1835 时间:2021-03-14 15:25:42 作者:admin

怎么将base64编码提交到后台?

导入sun.misc.base64编码器

导入sun.misc.base64解码器

//Encode s into Base64

public static string getbase64(string s){

if(s==null)return null

返回(New)sun.misc.base64编码器()). Encode(s.getbytes())

}

//解码base64编码的字符串s

公共静态字符串getfrombase64(字符串s){

if(s)==null)return null

BASE64Decoder decoder=new BASE64Decoder()

try{

byte[]b=解码器.decodeBuffer(s)

return new String(b)

}catch(Exception e){

return null

}

}

base64编码在线转换 base64工具 base64编码转图片

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。