我使用扫描器方法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()都按照我想要的方式执行。


当前回答

我想我来派对已经很晚了。

如前所述,在获取int值后调用input.nextLine()将解决您的问题。您的代码不能工作的原因是因为没有其他东西可以从您的输入(您输入int的地方)存储到string1。我将对整个主题进行更多的阐述。

将nextLine()视为Scanner类中nextFoo()方法中的一个特例。让我们举一个简单的例子。假设我们有如下两行代码:

int firstNumber = input.nextInt();
int secondNumber = input.nextInt();

如果我们输入下面的值(作为单行输入)

54 234

firstNumber和secondNumber变量的值分别变为54和234。这种工作方式的原因是因为当nextInt()方法接收值时,不会自动生成新的换行(即\n)。它只是接受“下一个int”并继续前进。除了nextLine(),其余的nextFoo()方法也是如此。

nextLine()在取值后立即生成新的换行;这就是@RohitJain说新的换行被“消耗”的意思。

最后,next()方法只接受最近的String而不生成新行;这使得它成为在同一行中获取单独字符串的优先方法。

我希望这能有所帮助。编码快乐!

其他回答

对于java初学者来说,这是一个非常基本的问题。当我开始学习java(自学)时,我也遇到过同样的问题。 实际上,当我们获取一个整数dataType的输入时,它只读取整数值,并留下newLine(\n)字符和这一行(即。留下新的行整数动态输入)会在我们尝试新的输入时产生问题。 如。比如,如果我们取一个整数输入然后尝试取一个字符串输入。

value1=sc.nextInt();
value2=sc.nextLine();

value2将自动读取换行符,而不接受用户输入。

解决方案: 我们只需要在获取下一个用户输入之前添加一行代码。

sc.nextLine();

or

value1=sc.nextInt();
sc.nextLine();
value2=sc.nextLine();

注意:不要忘记关闭Scanner,防止内存泄漏;

public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int i = scan.nextInt();
        scan.nextLine();
        double d = scan.nextDouble();
        scan.nextLine();
        String s = scan.nextLine();

        System.out.println("String: " + s);
        System.out.println("Double: " + d);
        System.out.println("Int: " + i);
    }

博士TL; 当(a)它是第一个读取指令,(b)之前的读取指令也是nextLine()时,调用nextLine()是安全的。

如果你不确定以上任何一个是正确的,你可以在调用scanner.nextLine()之前使用scanner.skip("\\R?"),因为调用next() nextInt()将留下潜在的行分隔符-由返回键创建,这将影响nextLine()的结果。.skip("\\R?")将让我们使用这个不必要的行分隔符。

Skip使用正则表达式where

\R表示行分隔符 ? 将使\R是可选的-这将防止跳过方法: 等待匹配序列 在系统等仍然开放的数据源到达终点时。在,输入流从套接字等。 抛出java.util.NoSuchElementException 终止/关闭的数据来源, 或者当现有数据与我们想要跳过的内容不匹配时

你需要知道的事情:

表示几行的文本在行之间也包含不可打印的字符(我们称之为行分隔符) 回车(CR -在字符串中以“\r”表示) 换行(LF - in字符串字面值表示为“\n”) 当您从控制台读取数据时,它允许用户输入他的响应,当他完成时,他需要以某种方式确认这一事实。为此,用户需要按下键盘上的“enter”/“return”键。

重要的是,除了确保将用户数据放置到标准输入(由System。(由Scanner读取)还会在后面发送与操作系统相关的行分隔符(如Windows \r\n)。

因此,当您向用户询问年龄等值时,用户输入42并按enter,标准输入将包含“42\r\n”。

问题

Scanner#nextInt(以及其他Scanner#nextType方法)不允许Scanner使用这些行分隔符。它将从系统中读取它们。in(否则Scanner如何知道用户没有更多的数字表示年龄值而不是面对空白?),这将从标准输入中删除它们,但它也将在内部缓存这些行分隔符。我们需要记住的是,所有的Scanner方法总是从缓存的文本开始扫描。

现在Scanner#nextLine()只是收集并返回所有字符,直到找到行分隔符(或流的结束)。但是由于从控制台读取数字后的行分隔符立即在Scanner的缓存中找到,因此它返回空String,这意味着Scanner无法在这些行分隔符(或流的结束)之前找到任何字符。 顺便说一句,nextLine也会使用这些行分隔符。

解决方案

当你想要求number,然后求整行同时避免作为nextLine结果的空字符串

consume line separator left by nextInt from Scanners cache by calling nextLine, or IMO more readable way would be by calling skip("\\R") or skip("\r\n|\r|\n") to let Scanner skip part matched by line separator (more info about \R: https://stackoverflow.com/a/31060125) don't use nextInt (nor next, or any nextTYPE methods) at all. Instead read entire data line-by-line using nextLine and parse numbers from each line (assuming one line contains only one number) to proper type like int via Integer.parseInt.


顺便说一句:扫描器#nextType方法可以跳过分隔符(默认情况下所有空白,如制表符,行分隔符),包括扫描器缓存的那些,直到它们找到下一个非分隔符值(令牌)。感谢它输入像“42\r\n\r\n321\r\n\r\n\r\nfoobar”代码

int num1 = sc.nextInt();
int num2 = sc.nextInt();
String name = sc.next();

将能够正确地分配num1=42 num2=321 name=foobar。

如果我期望一个非空的输入

避免: -如果以下输入被未检查的scan.nextLine()作为解决方法吃掉,则数据丢失 因为scan.nextLine()被scan.next()取代而导致的数据丢失(输入:"yippie ya yeah") -使用Scanner方法解析输入时抛出的异常(先读取,然后解析)

public static Function<Scanner,String> scanLine = (scan -> {
    String s = scan.nextLine();
    return( s.length() == 0 ? scan.nextLine() : s );
  });

用于上面的例子:

System.out.println("Enter numerical value");    
int option = input.nextInt(); // read numerical value from input

System.out.println("Enter 1st string"); 
String string1 = scanLine.apply( input ); // read 1st string
System.out.println("Enter 2nd string");
String string2 = scanLine.apply( input ); // read 2nd string

那是因为扫描仪。nextInt方法不读取通过按“Enter”创建的输入中的换行符,因此调用Scanner。nextLine在读取换行符后返回。

当您使用Scanner时,您将遇到类似的行为。在Scanner.next()或任何Scanner之后的nextLine。nextFoo方法(除了nextLine本身)。

处理:

Either put a Scanner.nextLine call after each Scanner.nextInt or Scanner.nextFoo to consume rest of that line including newline int option = input.nextInt(); input.nextLine(); // Consume newline left-over String str1 = input.nextLine(); Or, even better, read the input through Scanner.nextLine and convert your input to the proper format you need. For example, you may convert to an integer using Integer.parseInt(String) method. int option = 0; try { option = Integer.parseInt(input.nextLine()); } catch (NumberFormatException e) { e.printStackTrace(); } String str1 = input.nextLine();