(Java )byte[]和base64
字符串之间的转换
普通String 和byte[]转换
import  dec.binary.Base64;
public  class  UtilHelper {
//base64字符串转byte[]
public  static  byte [] base64String2ByteFun(String base64Str){        return  Base64.decodeBase64(base64Str);
}
//byte[]转base64
public  static  String byte2Base64StringFun(byte [] b){
return  deBase64String(b);
}
}
public  static  void  main(String[] args) {
字符串数组怎么转成byte
String str ="我是中国⼈";
byte [] Bytes();
System.out.println("打印:"+arr);
String str2=new  String(arr);
System.out.println("打印2:"+str2);
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。