java byte转换成字符串方法:
1.使用String的valueOf()方法进行转换:
byte b = 3;
String str = String.valueOf(b);
2.直接在字符串后面添加“”转换为字符串
String str = b + “”;
1、将byte数组转换成字符
byte[] b={(byte)0xB8,(byte)0xDF,(byte)0xCB,(byte)0xD9};
String str= new String (b);
2、将字符转换成byte数组
String str = "XXXX";
byte[] sb = str.getBytes();
比如byte b = 3;
String str = String.valueOf(b);
或者
String str = b + “”;
如果是byte数组
byte[] bs=...
String str = new String(bs);
希望对你有帮助
byte b[] = s.getBytes();//String转换为byte[]
String t = new String(b);//bytep[]转换为String