メインメソッドで作業しているコードは次のとおりです。
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...
double は使用できません。小数点なしの値として格納する必要があります。文字列から数字を保持する変数に数字の文字列を取得しようとしています(小数なし)