我有一个包含十六进制数字的字符串 但我想将它们解码为文本并将它们转换为字符串
如果我的字符串是“FF505000010000000A00015634” 它们是十六进制的,我如何将它们设置为\ xFF \ x50 ......等等
请在这里帮助我
答案 0 :(得分:3)
试
String s = "FF505000010000000A00015634";
s = s.replaceAll(" +", "");
byte[] bytes = new BigInteger(s, 16).toByteArray();
答案 1 :(得分:1)
将文本作为十六进制字符串转换为文本的简单方法是使用BigInteger。
String s = "Hello world!";
String hex = new BigInteger(s.getBytes(StandardCharsets.US_ASCII)).toString(16);
hex = hex.replaceAll("\\s+", ""); // remove any whitespaces.
String s2 = new String(new BigInteger(hex, 16).toByteArray(), StandardCharsets.US_ASCII);
System.out.printf("\"%s\" as hex is %s, converted back is \"%s\"%n", s, hex, s2);
打印
“Hello world!” as hex是48656c6c6f20776f726c6421,转换回来的是“Hello world!”
答案 2 :(得分:0)
这应该有效。你基本上得到每两个字符,并将其解析为int
,也可以解释为char
。由此,您构建另一个解码的String
。
String s = "FF505000010000000A00015634";
if (s.length() % 2 != 0) {
//odd amount, so wrong string. Throw exception.
}
String decoded = "";
int j = 0;
while (j < s.length()) {
String sub = s.substring(j, j + 2);
int i = Integer.parseInt(sub, 16);
decoded += (char)i;
j += 2;
}
System.out.println(decoded);
我的输出非常随机,但我认为你的测试字符串并不是那么好。
对于Hello world!
,请使用:
String s = "48 65 6C 6C 6F 20 57 6F 72 6C 64 21";
s = s.replaceAll(" ", "");
实际发生了什么:
String
分成两个字符。int
值,从而可以进行实际转换。String
。String
中包含所有字符。