java 16进制byte数组 转为string
时间: 2023-11-21 19:04:50 浏览: 83
十六进制转string
可以使用以下代码实现:
byte[] bytes = {0x48, 0x65, 0x6c, 0x6c, 0x6f}; //16进制byte数组
String str = new String(bytes, StandardCharsets.UTF_8); //转换为string
System.out.println(str); //输出 Hello
阅读全文