在Java中解析大的十六进制数字

发布于 2024-11-29 12:16:34 字数 241 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(2

回心转意 2024-12-06 12:16:34

如果 Integer 太小,请使用 Long

Long.parseLong(string, 16)

如果 Long 仍然太小,请使用 BigInteger

new BigInteger(string, 16)

If Integer is too small, use Long:

Long.parseLong(string, 16)

If Long is still too small, use BigInteger:

new BigInteger(string, 16)
﹂绝世的画 2024-12-06 12:16:34

我会使用 Long.parseLong(x, 16) BigInteger 对于 32 位值来说太过分了。

如果您希望该值是 int 值,则可以转换结果。

int x = (int) Long.parseLong("FF00FF00", 16);

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.

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