我正在尝试为学校编写一个 JAVA 程序。它要求我们使用提供的类,避免使用拆分,并解析:
不同部分之间分隔的电话号码。
package aaronjonesprog1;
public class AaronJonesProg1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
AJDissector phone = new AJDissector("1:919:882:5000");
System.out.println(phone.getPhoneNumber());
System.out.println(phone.getPhoneNumber(4));
System.out.println(phone.getPhoneNumber(1));
System.out.println(phone.getPhoneNumber(3));
System.out.println(phone.getPhoneNumber(2));
}
}
我的司机:
package aaronjonesprog1;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Aaron
*/
public class AJDissector
{
private String phoneColon;
private int areaCode, preCode, number, countryCode, emptyNum;
public AJDissector(String phoneNum)
{
this.phoneColon = phoneNum;
int index0 = phoneNum.indexOf(":");
int index1 = phoneNum.indexOf(":", index0);
int index2 = phoneNum.lastIndexOf(":");
this.countryCode = Integer.parseInt(phoneNum.substring(0, index0));
this.areaCode = Integer.parseInt(phoneNum.substring(index0, index1));
this.preCode = Integer.parseInt(phoneNum.substring(index1, index2));
this.number = Integer.parseInt(phoneNum.substring(index2));
}
public String getPhoneNumber()
{
return this.phoneColon;
}
public int getPhoneNumber(int a)
{
switch (a)
{
case 1:
return this.number;
case 2:
return this.countryCode;
case 3:
return this.preCode;
case 4:
return this.number;
default:
return this.emptyNum;
}
}
}
我收到的错误是:
Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:504)
at java.lang.Integer.parseInt(Integer.java:527)
at aaronjonesprog1.AJDissector.<init>(AJDissector.java:26)
at aaronjonesprog1.AaronJonesProg1.main(AaronJonesProg1.java:18)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)
有人可以帮我理解我做错了什么吗?我不相信我用parseInt
错了。我查看了http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Integer.html试图弄清楚,但我认为我的代码是正确的。谁能告诉我我在这里做错了什么?