我遇到try
和catch
的问题。我的程序是插入三个不同的字符串名称,地址和电话号码,然后使用toString
方法将这三个字符串转换为单个字符串。
每当我写错选项(字符串或其他数据类型)时,我都会遇到异常处理问题,然后捕获无效时间。
import java.util.ArrayList;
import java.util.Scanner;
public class mainClass {
public static void main(String[] args) {
Scanner input= new Scanner(System.in);
ArrayList<String> arraylist= new ArrayList<String>();
CreateFormat FormatObject = new CreateFormat();
int choice;
String phoneNumber;
String name,address;
String format="Empty";
int x=1;
int flag=0;
do
{
try
{
System.out.println("Enter your choice");
System.out.printf("1:Enter new data\n2:Display data");
choice=input.nextInt();
switch (choice)
{
case 1:
{
System.out.println("Enter name ");
name=input.next();
System.out.println("Enter phone number");
phoneNumber=input.next();
System.out.println("Enter address");
address=input.next();
format=FormatObject.toString(phoneNumber, name, address);
arraylist.add(format);
flag++;
}
break;
case 2:
{
System.out.println("Name Phone number Address");
System.out.println();
for(int i=0;i<flag;i++)
{
System.out.println(arraylist.get(i));
}
}
break;
}
}
catch(Exception InputMismatchException){
System.out.println("Enter right choice");`
}while(x==1);
}
}
//The format class ...//returns format for string
答案 0 :(得分:6)
您的try
和catch
与循环无关,也与您的问题无关。
while(x==1)
是您测试的内容,但您永远不会更改x
的值,因此它将始终保持为1,因此上述检查将始终返回true。
答案 1 :(得分:0)
我想我现在知道你的问题到底是什么了。
只需在代码的最开头添加input.nextLine()
即可停止输入运行。
boolean wrongInput = false;
do {
try {
if (wrongInput) {
input.nextLine();
wrongInput = false;
}
System.out.println("Enter your choice");
[...]
} catch (...) {
wrongInput = true;
}
应该做的伎俩。但请注意,我注意到你的程序中有两个错误(可能是因为我没有你的CreateFormat
类),(a)我不能在地址上添加一个数字,(b)没有停止循环的选项(我强烈建议 - 你只需设置x = -1或类似的东西,最好使用boolean
来结束循环)。