在Java中解析大的十六进制数字
我正在尝试使用 Integer.parseInt(String string, int radix) 将代码中的十六进制数(例如 FF00FF00)解析为
,但总是得到 int
一个 String
)NumberFormatException
。如果我解析没有最后两个数字(FF00FF)的数字,它效果很好。
Java中有没有办法解析这么大的数字?
I'm trying to parse into int
a String
which is hexadecimal number in my code (FF00FF00, for example) using Integer.parseInt(String string, int radix)
, but always get NumberFormatException
. If I parse the number without last two numbers (FF00FF) it works well.
Is there any method to parse such big numbers in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Integer 太小,请使用
Long
:
如果 Long 仍然太小,请使用
BigInteger
:If Integer is too small, use
Long
:If Long is still too small, use
BigInteger
:我会使用 Long.parseLong(x, 16) BigInteger 对于 32 位值来说太过分了。
如果您希望该值是 int 值,则可以转换结果。
I would use
Long.parseLong(x, 16)
BigInteger is overkill for a 32-bit value.If you expect this value to be an int value you can cast the result.