byte[] b={1} 转成字符串
时间: 2023-12-15 20:04:37 浏览: 16
python3.x 将byte转成字符串的方法
将 byte 数组转换为字符串可以使用 String 类的构造函数,如下所示:
```
byte[] b = {1};
String str = new String(b);
```
这样就可以将 byte 数组转换为字符串了。需要注意的是,如果 byte 数组中的值不是 ASCII 码,则转换后的结果可能会出现乱码。
阅读全文
python3.x 将byte转成字符串的方法