- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 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.nextLine
时,您会遇到类似的行为或任何 Scanner.nextFoo
方法(nextLine
本身除外)。
解决方法:
在每个 Scanner.nextInt
或 Scanner.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();
关于java - 扫描仪在使用 next() 或 nextFoo() 后跳过 nextLine()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57892054/
代码: public void addTest(int idUser) throws IOException { String date = null; String tec = nu
我在我的网站上写了一个 php 搜索脚本来检查一个包是否存在于文本文件中(我使用了 file_get_contents 。)它需要用户输入的内容并将其与字符串 'BUILD:' 结合起来,下面是一个文
else if(input==5){ String artist = "Bob"; System.out.print("Artist: "); artist = keyboar
我正在使用一个 Java 加密程序,它提示用户从 A-Z、0-9、句号、逗号、感叹号和空格映射他/她自己的字符串序列。 程序运行如下: 用户输入与此不同序列的字符串: String original=
我正在解决一个java问题,我正在创建一个程序来模拟旧的电视问答节目,你赌上你的生命。游戏节目主持人格劳乔·马克思选择一个 secret 词,然后与参赛者聊了一会儿。如果任一参赛者在句子中使用 sec
我试图通过使用空格作为分隔符将“sisestus”分割成不同的单词,但仅使用 sc.next() 不允许我输入带空格的字符串,所以我读到我应该使用 .nextLine (),但根本不起作用。我该如何解
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 4 年前。 我有一个程
我正在使用服务器和客户端,其中服务器发送一个字符串,其中包含未知数量的\n。例如: foo1 \n foo2 \n foo3 或 foo1 \n foo2 在客户端,由于套接字的阻塞性质,我无法尝试/
如果我从 catch block 中删除 input.nextLine(),则会开始无限循环。注释说 input.nextLine() 正在丢弃输入。它究竟是如何做到这一点的? import java
基本上,我正在尝试执行一个while 循环,并继续阅读直到行输入为$。读取时,循环应该退出。 但是,我收到一个运行时异常,如 java.util.InputMismatchException。 代码如
我写了一个基本代码来读取不同的数据类型。但我无法输入字符串作为输入。我错过了什么? public class Main { public static void main(String[] args)
为什么nextLine()方法不起作用?我的意思是,在第二次扫描调用后我无法输入任何句子,因为程序运行到最后并退出。 输入:era时代食品食品正确正确sss sss退出 我应该使用另一个 Scanne
考虑代码: import java.util.*; public class TestClass { public static void main(String[] args) {
我是 java 初学者。我想知道 nextLine() 方法如何丢弃您当前的输入?例如假设以下代码: Scanner input = new Scanner(System.in); int a = i
当我运行我的程序而不是读取字符串并将其存储在 tempAddress 中时,我的程序只是在我输入之前打印下一行。对前两个使用下一个作品,因为我只使用一个词,但第三个词包含多个词,所以需要其他东西,通过
我的猜谜游戏一切正常,但是当涉及到询问用户是否想再玩的部分时,它会重复这个问题两次。但是我发现,如果我将输入法从 nextLine() 更改为 next(),它不会重复问题。这是为什么? 这里是输入和
这个问题已经存在: 关闭 9 年前。 Possible Duplicate: Scanner issue when using nextLine after nextInt 我正在尝试创建一个程序,
这个问题在这里已经有了答案: Scanner is skipping nextLine() after using next() or nextFoo()? (24 个回答) 关闭7年前。 我在尝试使
? 1 2
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 6 年前。 f
我是一名优秀的程序员,十分优秀!