程序如下:
String s = "fs123fdsa";//“fs123fdsa”是输入的string变量
byte b[] = s.getBytes();//String转换为byte[]
String t = new String(b);//bytep[]转换为String
.getByte() 你可以在字符串加"."看提示。得到你需要的有.getByte("UTF-8")等
将byte数组转换成string
BASE64Encoder enc=new BASE64Encoder();
String 转换后的string=enc.encode(byte数组);
说明:BASE64Encoder工具可对文字,或字符串进行Base64编码/解码,若开发过程中用到Base64算法,它会成为您有良伴.