java将ascii数组转成unicode字串

//转

byte[] bytes;

String str = new String(bytes, "GBK");

//回转

byte b;

b = (byte)str.charAt(0);