将byte数组转换成string方法如下
BASE64Encoder enc=new BASE64Encoder();
String 转换后的string=enc.encode(byte数组);
将byte数组转换成string
BASE64Encoder enc=new BASE64Encoder();
String 转换后的string=enc.encode(byte数组);
将string转换回来成为byte数组:
BASE64Decoder dec=new BASE64Decoder();
try {byte数组 = dec.decodeBuffer(转换后的string);} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace(); }