无法在 switch 语句中接收用户输入



我刚刚开始编写一个菜单,要求用户选择他们想要执行的操作(如页面等)。一旦他们选择了操作,他们需要能够使用键盘输入以完成任务。

问题是当用户尝试输入时,我收到"字符串索引超出边界异常:字符串索引超出范围"消息。这是代码:

int choice;
  boolean finished= false;
  while (!finished) {
     System.out.println(currentUser.getFirstName() + ". Please choose: ");
     System.out.println("'l'- To like a page, 'e' to exit");
     choice = keyboard.nextLine().charAt(0);
     switch (choice) {
        case 'l':
           PageList.displayAllPages();
           System.out.println("Enter the page to add");
           int pIndex = keyboard.nextInt();
           currentUser.insertPage(PageList.findPage(pIndex).toString());
           break;
        case 'e':
           finished = true;
           currentUser.saveMyPages(userDir);
           currentUser.saveMyFriends();
           break;
        default:
           System.out.println("Invalid entry");
     }//switch
  }//while

显然问题是:

int pIndex = keyboard.nextInt();
currentUser.insertPage(PageList.findPage(pIndex).toString());

我该如何解决这个问题?我需要把它放在 try catch 语句中吗?

这是痕迹。第 79 行实际上是在 switch 语句之前以"choice = keyboard"开头的行

线程"main"中的异常 java.lang.StringIndexOutOfBounds异常:字符串索引超出范围:0 at java.lang.String.charAt(String.java:646) 在B00670983。SocNetApp.main(SocNetApp.java:79) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:483) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)

执行行后

int pIndex = keyboard.nextInt();

在 while-loop 的第二次迭代中,输入流中仍然有结束行字符,并且

choice = keyboard.nextLine().charAt(0);

导致空字符串。因此,在该行之后再添加一个keyboard.nextLine();

int pIndex = keyboard.nextInt();

有关相关问题,请参见

相关内容

  • 没有找到相关文章

最新更新