在 Java 中将十六进制字符串转换为无符号字节数组

发布于 2024-12-20 00:25:59 字数 308 浏览 1 评论 0原文

我得到 14 字节的十六进制字符串,例如 a55a0b05000000000022366420ec。 我使用 javax.xml.bind.DatatypeConverter.parseHexBinary(String s) 来获取 14 字节的数组。 不幸的是,这些是无符号字节,例如最后一个 0xEC = 236。

但我想将它们与这样的字节进行比较: if(byteArray[13] == 0xec) 由于 235 大于有符号字节,因此该 if 语句将失败。 知道如何用java解决这个问题吗? 谢谢!

I get hex strings of 14 bytes, e.g. a55a0b05000000000022366420ec.
I use javax.xml.bind.DatatypeConverter.parseHexBinary(String s) to get an array of 14 bytes.
Unfortunately those are unsigend bytes like the last one 0xEC = 236 for example.

But I would like to compare them to bytes like this:
if(byteArray[13] == 0xec)
Since 235 is bigger than a signed byte this if statement would fail.
Any idea how to solve this in java?
Thx!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

愁杀 2024-12-27 00:25:59

尝试 if(byteArray[13] == (byte)0xec)

Try if(byteArray[13] == (byte)0xec)

一身软味 2024-12-27 00:25:59

您可以将字节提升为整数:

if((byteArray[13] & 0xff) == 0xec)

You can promote the byte to integer:

if((byteArray[13] & 0xff) == 0xec)
霞映澄塘 2024-12-27 00:25:59

由于java不支持(至少不支持基元)任何无符号数据类型,因此您应该考虑使用int作为数据类型来解析字符串..

        String str = "a55a0b05000000000022366420ec";
        int[] arrayOfValues = new int[str.length() / 2];
        int counter = 0;
        for (int i = 0; i < str.length(); i += 2) {
            String s = str.substring(i, i + 2);
            arrayOfValues[counter] = Integer.parseInt(s, 16);
            counter++;
        }

使用arrayOfValues...

since java doesn't support (atleast with primitives) any unsigned data types, you should look at using int as your data type to parse the string..

        String str = "a55a0b05000000000022366420ec";
        int[] arrayOfValues = new int[str.length() / 2];
        int counter = 0;
        for (int i = 0; i < str.length(); i += 2) {
            String s = str.substring(i, i + 2);
            arrayOfValues[counter] = Integer.parseInt(s, 16);
            counter++;
        }

work with the arrayOfValues...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文