gpt4 book ai didi

java - 转换为 Long 时字符串 13363190467160024386 的数字格式异常

转载 作者:行者123 更新时间:2023-11-29 09:34:39 24 4
gpt4 key购买 nike

我正在尝试转换 numeric StringLong , 但它给了我 NumberFormatException .

我得到 NumberFormatException对于这个字符串 13363190467160024386

Long.parseLong(String s)

下面是我得到的异常-

java.lang.NumberFormatException: For input string: "13363190467160024386"

有什么建议为什么会发生吗?

最佳答案

绝对 - 这个数字大于 Long.MAX_VALUE (9223372036854775807)。

使用BigInteger相反:

BigInteger value = new BigInteger("13363190467160024386");

关于java - 转换为 Long 时字符串 13363190467160024386 的数字格式异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13297413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com