如何将十六进制字符串转换为普通字符串?

时间:2015-05-17 12:18:16

标签: java android hex converter

我收到了HTTP GET响应作为java中带套接字的十六进制字符串数据。但我想将普通字符串转换为HTML格式的数据。我该怎么做?

1 个答案:

答案 0 :(得分:1)

byte[] bytes = Hex.decodeHex(YourhexString .toCharArray());
String s=new String(bytes, "UTF-8");