协慌网

登录 贡献 社区

扫描仪在使用 next()或 nextFoo()之后跳过 nextLine()吗?

我正在使用Scanner方法nextInt()nextLine()读取输入。

看起来像这样:

System.out.println("Enter numerical value");    
int option;
option = input.nextInt(); // Read numerical value from input
System.out.println("Enter 1st string"); 
String string1 = input.nextLine(); // Read 1st string (this is skipped)
System.out.println("Enter 2nd string");
String string2 = input.nextLine(); // Read 2nd string (this appears right after reading numerical value)

问题在于输入数值后,第一个input.nextLine()被跳过,第二个input.nextLine()被执行,因此我的输出看起来像这样:

Enter numerical value
3   // This is my input
Enter 1st string    // The program is supposed to stop here and wait for my input, but is skipped
Enter 2nd string    // ...and this line is executed and waits for my input

我测试了我的应用程序,看起来问题出在使用input.nextInt() 。如果删除它,则按照我希望的方式执行string1 = input.nextLine()string2 = input.nextLine()

答案

这是因为Scanner.nextInt方法不会在您按 “Enter” 键创建的输入中读取换行符Scanner.nextLine的调用在读取该换行符后返回。

当您在Scanner.next()或任何Scanner.nextFoo方法( nextLine本身Scanner.nextLine时,会遇到类似的行为。

解决方法:

  • 在每个Scanner.nextIntScanner.nextFoo之后都放置一个Scanner.nextLine调用,以消耗该行的其余部分,包括换行符

    int option = input.nextInt();
    input.nextLine();  // Consume newline left-over
    String str1 = input.nextLine();
  • 或者,甚至更好的是,通过Scanner.nextLine读取输入,并将输入转换为所需的正确格式。例如,您可以使用Integer.parseInt(String)方法转换为整数。

    int option = 0;
    try {
        option = Integer.parseInt(input.nextLine());
    } catch (NumberFormatException e) {
        e.printStackTrace();
    }
    String str1 = input.nextLine();

问题出在input.nextInt()方法上 - 它只读取 int 值。因此,当您继续阅读 input.nextLine()时,您会收到 “\ n” 回车键。因此,要跳过此步骤,您必须添加input.nextLine() 。希望现在应该弄清楚。

像这样尝试:

System.out.print("Insert a number: ");
int number = input.nextInt();
input.nextLine(); // This line you have to add (It consumes the \n character)
System.out.print("Text1: ");
String text1 = input.nextLine();
System.out.print("Text2: ");
String text2 = input.nextLine();

这是因为当您输入数字然后按Enter 时input.nextInt()仅使用数字,而不使用 “行尾”。 input.nextLine() ,它会消耗掉第一个输入中缓冲区中的 “行尾”。

相反,使用input.nextLine()后立即input.nextInt()