修复 Java Scanner NextLine Skips 错误
在 Java 中的 next()
或 nextInt()
方法之后使用 nextLine()
方法时,有时 nextLine()
方法会跳过要读取的当前输入并转到下一个输入。本文将讨论为什么会发生这种情况以及如何解决此问题。
在我们研究 nextLine()
方法的问题之前,让我们首先了解 nextLine()
方法的工作原理。此方法属于 java.util.Scanner
类。
此函数打印整行,除了末尾的行分隔符。它搜索输入以寻找行分隔符。如果没有找到行分隔符,它可能会在搜索要跳过的行的同时搜索所有输入。
此 Scanner 方法越过当前行。如果有任何输入被跳过,它会返回它。
语法:
public String nextLine()
请注意,此函数不接受任何参数并返回跳过的行。看看下面的例子,看看它是如何工作的。
// To demonstrate the working of nextLine() method
import java.util.*;
public class Example {
public static void main(String[] args) {
String a = "Java \n is \n intriguing";
// create a new scanner
Scanner sc = new Scanner(a);
// print the next line
System.out.println(sc.nextLine());
// print the next line again
System.out.println(sc.nextLine());
// print the next line again
System.out.println(sc.nextLine());
}
}
输出:
Java
is
intriguing
Java 中 nextLine()
方法的主要用途是读取带有空格的字符串输入。
请注意,我们也可以使用 next()
方法输入一个字符串,但它只读取它遇到的第一个空格。此外,next()
方法在输入后将光标放在同一行。
然而,nextLine()
方法在读取输入后将光标置于下一行。看下面的例子。
import java.util.*;
public class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// Try reading a string with space using next()
System.out.println("Enter the name of a movie");
String name = sc.next();
// Done to bring the cursor to next line
sc.nextLine();
// Re-reading the string using nextLine()
System.out.println("Re-enter this name");
String rename = sc.nextLine();
System.out.println();
System.out.println("Here is the output:");
// printing the output
System.out.println(name);
System.out.println(rename);
}
}
输出:
Enter the name of a movie
Harry Potter
Re-enter this name
Harry Potter
Here is the output:
Harry
Harry Potter
请注意,next()
方法仅读取空格前的名字并忽略其余部分。然而,nextLine()
方法读取带有空格的整个字符串。
nextLine()
方法的问题
要了解此问题,请查看以下示例。
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// This part takes the input
System.out.println("Input the Roll Number:");
int number = sc.nextInt();
System.out.println("Input your full name:");
String name = sc.nextLine();
System.out.println("Input your branch:");
String branch = sc.nextLine();
// This part prints the values
System.out.println("Roll No: " + number);
System.out.println("Name: " + name);
System.out.println("Branch: " + branch);
}
}
输出:
Input the Roll Number:
1
Input your full name:
Input your branch:
Computer Science
Roll No: 1
Name:
Branch: Computer Science
但所需的输出是这样的:
Input the Roll Number : 1 Input your full name : Harry Potter Input your branch
: Computer Science Roll No : 1 Name : Harry Potter Branch : Computer Science
请注意,nextLine()
方法跳过 Name
的输入,而是转到分支的下一个输入。
为什么会出现这个问题
这是因为当 Scanner 类的 nextInt()
方法读取卷号时,它返回值 1
。该值存储在变量编号中。
但是读取卷号后光标不会转到下一行。它在 1
之后仍然存在。像这样:
1_ // the cursor remains here only
因此,当我们使用 nextLine()
方法读取名称时,它会从光标的当前位置开始读取输入。所以在 1
之后,下一行就是新行本身。 \n
字符表示这个新行。因此,名称只是\n
。
如何解决 Java Scanner NextLine 跳过的问题
有两种方法可以解决此问题。
parseInt()
方法属于 java.lang
包的 Integer 类,返回某个字符串的原始数据类型。这些方法主要有两种:
-
Integer.parseInt(String s)
-
Integer.parseInt(String s, int radix)
要使用 nextLine()
跳过,我们将使用第一种方法 - Integer.parseInt(String s)
。这会将整数的完整行读取为字符串。稍后,它将其转换为整数。
语法:
int value = Integer.parseInt(sc.nextLine());
让我们使用 Java Integer.parseInt()
方法实现我们上面使用的相同代码并纠正问题。
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// This part takes the input
System.out.println("Input the Roll Number:");
// Using the parseInt() method this time
int number = Integer.parseInt(sc.nextLine());
System.out.println("Input your full name:");
String name = sc.nextLine();
System.out.println("Input your branch:");
String branch = sc.nextLine();
// This part prints the values
System.out.println("Roll No: " + number);
System.out.println("Name: " + name);
System.out.println("Branch: " + branch);
}
}
输出:
Input the Roll Number:
1
Input your full name:
Harry Potter
Input your branch:
Computer Science
Roll No: 1
Name: Harry Potter
Branch: Computer Science
这次代码运行良好。但是我们不能将它用于 Byte character(Byte.parseByte(sc.nextLine()))
之后的输入字符串。
在这种情况下,我们可以使用第二种方法。这是文档的链接以获取更多信息。
这会消耗剩余的新行。看例子。
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// This part takes the input
System.out.println("Input the Roll Number:");
int number = sc.nextInt();
// An extra nextLine() to consume the leftover line
sc.nextLine();
System.out.println("Input your full name:");
String name = sc.nextLine();
System.out.println("Input your branch:");
String branch = sc.nextLine();
// This part prints the values
System.out.println("Roll No: " + number);
System.out.println("Name: " + name);
System.out.println("Branch: " + branch);
}
}
输出:
Input the Roll Number:
1
Input your full name:
Harry Potter
Input your branch:
Computer Science
Roll No: 1
Name: Harry Potter
Branch: Computer Science
相关文章
Java 中的 volatile 关键字
发布时间:2023/11/13 浏览次数:173 分类:Java
-
本文讨论了 Java 中的 volatile 关键字及其优缺点,并举例说明了如何使用。Java 是一种非常流行的编程语言,通过了解 Java,我们可以很容易地理解它为什么会在编程社区中获得这样的地位。
Java 中的 StringUtils
发布时间:2023/11/13 浏览次数:80 分类:Java
-
本文介绍 Java 中的 StringUtils 类是什么。本文介绍什么是 StringUtils 以及如何在 Java 中使用它来处理字符串。StringUtils 是一个用于处理 String 的类,它提供了比 Java String 类更多的实用方法。
Java 中的 flatMap
发布时间:2023/11/13 浏览次数:132 分类:Java
-
本文介绍 flatMap 以及如何在 Java 中使用它。本文介绍 flatMap 以及如何在 Java 中使用它。flatMap 是 Java 流中的一个操作/函数,用于在执行某些功能性任务后获取新流。在这里,我们将讨论 flatMap
在 Java 中将 Stream 元素转换为映射
发布时间:2023/11/13 浏览次数:77 分类:Java
-
我们将使用 Java 将流元素转换为映射。我们将向你展示如何使用 Collectors.toMap() 从 Java 字符串中提取映射。我们将讨论 Java Streams 的实际用途以及如何将流元素转换为映射元素。
Java 中的 findFirst 流方法
发布时间:2023/11/13 浏览次数:171 分类:Java
-
本教程介绍 Java 中的 findFirst 流方法。java.util.stream API 是在 Java 8 中引入的;它用于处理对象的集合。不同的源(例如数组或集合)可以创建流。
Java 中的 Stream 的 reduce 操作
发布时间:2023/11/13 浏览次数:147 分类:Java
-
本文介绍 Java 中 stream 的 reduce 操作。本文将讨论 reduce() 操作细节并讨论它的一些示例。在讨论 reduce() 操作之前。让我们首先讨论减少。
Java 中的 reflection 是什么
发布时间:2023/11/13 浏览次数:79 分类:Java
-
本文介绍了 reflection 以及如何在 Java 中使用它。本文介绍 reflection 以及如何在 Java 中使用它。Java 有一个 reflection API 特性,它允许我们检查和修改类、接口等。
修复 Java 未解决的编译错误
发布时间:2023/11/13 浏览次数:141 分类:Java
-
本文介绍如何修复 Java 中未解决的编译错误。Java 在三个组件上工作:JVM、JRE 和 JDK。JVM(Java 虚拟机)在物理上并不存在,它提供了运行字节码的环境。
修复 Java cannot be resolved to a variable 错误
发布时间:2023/11/13 浏览次数:64 分类:Java
-
修复 Java cannot be resolved to a variable 错误本指南将教你如何修复 Java 中的 cannot be resolved to a variable 错误。