这是我在 main 方法中使用的代码:
String numbers = "12345678900";
long upc = Integer.parseInt(numbers);
System.out.println(upc);
给我:
Exception in thread "main" java.lang.NumberFormatException: For input string: "12345678900"
at java.lang.NumberFormatException.forInputString...
at java.lang.Integer.parseInt....
at java.lang.Integer.parseInt...
at testRun.main...
我不能使用双精度,它们需要存储为没有小数的值。我正在尝试将字符串中的数字字符串转换为包含数字的变量(无小数)