gpt4 book ai didi

在输入中使用空格时 Java 扫描器输入不匹配

转载 作者:太空宇宙 更新时间:2023-11-04 09:23:54 25 4
gpt4 key购买 nike

我正在java中使用扫描仪,并尝试在选项2的输入中输入一个空格(从我的散列图中删除用户),但是当我在答案中添加空格时,我收到一个InputMismatchException。在研究时我遇到了这个线程Scanner Class InputMismatchException and Warnings这表示使用这行代码来解决问题: .useDelimiter(System.getProperty("line.separator")); 我添加了这一行,现在我的选项 2 进入了输入数据的永无止境的循环。这是我的代码:

public class Test {

public static void main(String[] args) {
Scanner scan = new Scanner (System.in);

AddressBook ad1 = new AddressBook();
String firstName="";
String lastName="";
String key="";
int choice=0;
do{
System.out.println("********************************************************************************");
System.out.println("Welcome to the Address book. Please pick from the options below.\n");
System.out.println("1.Add user \n2.Remove user \n3.Edit user \n4.List Contact \n5.Sort contacts \n6.Exit");

System.out.print("Please enter a choice: ");
choice = scan.nextInt();

if(choice==1){
//Add user
System.out.print("Please enter firstname: ");
firstName=scan.next();
System.out.print("Please enter lastname: ");
lastName=scan.next();
Address address = new Address();
key = lastName.concat(firstName);
Person person = new Person(firstName,lastName);
ad1.addContact(key,person);
System.out.println("key: " + key);
}

else if(choice==2){
//Remove user
System.out.println("Please enter name of user to remove: ");
scan.useDelimiter(System.getProperty("line.separator"));
key=scan.next();
System.out.println("name:" + key);
ad1.removeContact(key);
}

else if(choice==3){
//Edit user
}

else if(choice==4){
//List contact
ad1.listAllContacts();

}

else if(choice==5){
//Sort contacts
}
}while(choice!=6);
}
}

我需要使用空格的原因是从我的 HashMap 中删除用户,我需要输入他们的全名,因为 key 是他们的姓氏和名字的串联,任何帮助将不胜感激

最佳答案

nextInt() 的行为与 next() 类似,即当它读取一行时,会将光标放在该行后面。

示例:您给出 6 作为输入

6 
^(scanner's cursor)

所以下次当你调用nextLine()时。它将返回光标之后的整行,在本例中光标为空。

要解决此问题,您需要调用额外的 nextLine() ,以便扫描程序关闭它正在读取的上一行并转到下一行。

你可以这样做

System.out.print("Please enter a choice: ");
choice = scan.nextInt(); // Reads the int
scan.nextLine(); // Discards the line

在选择 2 中,由于您需要用户的全名,因此您可以使用 nextLine() 来获取整行以及空格。

//Remove user
System.out.println("Please enter full name of user to remove: ");
key=scan.nextLine();
System.out.println("name:" + key);
ad1.removeContact(key);

或者您可以执行与选择 1 中类似的操作

System.out.print("Please enter firstname: ");
firstName=scan.next();
System.out.print("Please enter lastname: ");
lastName=scan.next();
key = lastName.concat(firstName);
System.out.println("name:" + key);
ad1.removeContact(key);
scan.nextLine(); // This is will make sure that in you next loop `nextInt()` won't give an input mismatch exception

关于在输入中使用空格时 Java 扫描器输入不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57976648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com