当前位置: 首页 > 知识库问答 >
问题:

异常在线程"主",我认为整数。ParseInt()卡住了,但我不知道为什么

夏晋
2023-03-14

我的程序从用户那里得到两个数字,一个长度为10,一个长度为3。我把它们当作一根绳子。然后我尝试使用Integer.parseInt()将它们转换为整数。我没有代码错误,但当我运行程序时,我得到以下错误。

异常线程"main"java.lang.NumberFormatExcture:对于输入字符串:"4159238189"在java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)在java.lang.nteger.parseInt(Integer.java:495)在java.lang.我nteger.parseInt(nteger.java:527)在assn3.secrets.storetoarray(ssn3.java:75)在assn3。ssn3.main(ssn3.java:30)Java结果

public class Assn3 {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
    // TODO code application logic here
    secrets agent = new secrets();

    agent.getnumber();
    agent.storetoarray();
}
}

class secrets{
private String initialphone, key;
//private String phonestring, keystring;
private int phonelength, keylength;
private int phoneint, keyint;
private int phonetemp1, phonetemp2;
double[] phonearray = new double[phonelength];
double[] keyarray = new double[keylength];


public void getnumber()
//get the phone number and security code
//If the number and key are not the right length the program will stop
{         
   Scanner input = new Scanner(System.in);
   System.out.print("Please enter the phone number you need encrypted\n"
           + "just enter the 10 digits no dashes\n");
   initialphone = input.next(); 
   phonelength = initialphone.length();
   if(phonelength !=10){
       System.out.print("nope");
       System.exit(0);
   }
   System.out.print("Please enter the encryption key\n"
           + "just 3 digits please\n");
   key = input.next();
   keylength = key.length();
   if(keylength !=3){
       System.out.print("nope");
       System.exit(0);
   }

}

public void storetoarray()
        //Turn the strings to ints
        //A loop chops of the last digit and stores in an array
{



    phoneint = Integer.parseInt(initialphone);
    phonetemp1 = phoneint;
    keyint = Integer.parseInt(key);


    for (int i = phonelength; i>=0; i--)
    {
        phonearray[i] = phonetemp1%10;
        phonetemp2 = phonetemp1 - phonetemp1%10;
        phonetemp1 = phonetemp2;
        System.out.print("Phone temp 2" + phonetemp2);
    }



}

}

共有2个答案

翟缪文
2023-03-14

integer是一种有符号的32位类型,其范围从-2,147,483,648到2,147,483,647。long是一种有符号的64位类型,对于int类型不足以容纳所需值的情况很有用,范围从-9,223,372,036,854,775,808到9 ,223,372,036,854,775,807。这使得它在需要大的整数时非常有用。

试试这行代码-

long phoneint = Long.parseLong(initialphone);
long phonetemp1 = phoneint;
逑景铄
2023-03-14

整数s(和ints)只能具有整数的值。MAX_VALUE(2^31)-1大约20亿。您的输入比这个大,这使得它不是一个可解析的int,所以parseInt()抛出异常。它可以使用Long.parseLong(),它具有更高的MAX_VALUE,但是对于您的目的,您可能根本不需要您的变量是数字对象。因为您没有对它执行任何数学运算,所以您很可能只是将它保留为String

编辑:第二眼,我看到你正在对电话号码执行一些算术,但是同样的效果很可能可以通过String操作来实现。很难说你在那里做什么。

 类似资料: