成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

base64編碼在線轉(zhuǎn)換 怎么將base64編碼提交到后臺?

怎么將base64編碼提交到后臺?導(dǎo)入sun.misc.base64編碼器導(dǎo)入sun.misc.base64解碼器//Encode s into Base64public static string

怎么將base64編碼提交到后臺?

導(dǎo)入sun.misc.base64編碼器

導(dǎo)入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

公共靜態(tài)字符串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

}

}