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

我正在 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();


        }


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


手掌心
浏览 129回答 1
1回答

慕标琳琳

nextInt()行为类似于next()当它读取一行时,它将光标放在该行后面。示例:您输入 66  ^(scanner's cursor)所以下次你打电话的时候nextLine()。它将返回光标之后的整行,在本例中光标为空。要解决此问题,您需要调用一个额外函数,nextLine()以便扫描仪关闭它正在读取的上一行并转到下一行。你可以这样做System.out.print("Please enter a choice: ");choice = scan.nextInt(); // Reads the intscan.nextLine(); // Discards the line在选择 2 中,由于您想要用户的全名,因此您可以使用它nextLine()来获取整行和空格。//Remove userSystem.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
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java