标签: java android hex converter
我收到了HTTP GET响应作为java中带套接字的十六进制字符串数据。但我想将普通字符串转换为HTML格式的数据。我该怎么做?
答案 0 :(得分:1)
byte[] bytes = Hex.decodeHex(YourhexString .toCharArray()); String s=new String(bytes, "UTF-8");