Long.parseLong的NumberFormatException

时间:2014-11-01 13:49:17

标签: java exception long-integer numberformatexception

当我尝试运行此代码时(是的,我知道它会运行得非常长并且不是很漂亮):

DecimalFormat formatA = new DecimalFormat("000");
        DecimalFormat formatB = new DecimalFormat("0000000000000000000000000000000000000000");

        for(int c=0; c<=7; c++){
            String binC = formatA.format(Integer.parseInt(Integer.toBinaryString(c)));
            for(int d=0; d<LFSRa.length; d++){
                LFSRa[d]=Character.getNumericValue((binC.charAt(d)));                   
            }
            for(long e=0; e<=1099511627775L; e++){
                String binE = formatB.format(Long.parseLong((Long.toBinaryString(e))));
                for(int f=0; f<LFSRb.length; f++){
                    LFSRb[f]=Character.getNumericValue((binE.charAt(f)));
                }


            }
        }

我收到以下异常

Exception in thread "main" java.lang.NumberFormatException: For input string: "10000000000000000000"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Long.parseLong(Unknown Source)
at java.lang.Long.parseLong(Unknown Source)
at A41.main(A41.java:76)

我不明白为什么。我该怎么办? 有人可以向我解释这个问题吗?

1 个答案:

答案 0 :(得分:0)

如果你看到这个:

http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html

long(即max)的范围是9223372036854775807,19位数,一旦达到10000000000000000000(20位数),它会尝试将此字符串转换为超出范围的long,因此会出现异常。