gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 06:37:24 24 4
gpt4 key购买 nike

我正在尝试使用以下代码将系统时间转换为 int:

String today = "" + System.currentTimeMillis();
int todayInt = Integer.parseInt(today);

但我收到以下错误:

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

为什么这个号码:“1538956627792”仍然抛出错误?

最佳答案

数字太长,无法解析为int,您需要使用Long来解析那个大数字,

long todayInt = Long.parseLong(today);

关于java.lang.NumberFormatException : For input string: "1538956627792",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52998163/

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