在 Java 中将十六进制字符串转换为无符号字节数组
我得到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 if(byteArray[13] == (byte)0xec)
Try
if(byteArray[13] == (byte)0xec)
您可以将字节提升为整数:
You can promote the byte to integer:
由于java不支持(至少不支持基元)任何无符号数据类型,因此您应该考虑使用int作为数据类型来解析字符串..
使用
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..
work with the
arrayOfValues
...