- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
代码:
public void addTest(int idUser) throws IOException {
String date = null;
String tec = null;
System.out.println("Enter name for test file :");
String file = input.next(); //Name of file
System.out.println("Enter date formatted as dd/mm/yyyy hh:mm :");
date = input.nextLine(); //String 2 parts
input.next();
System.out.println("Enter technician name :");
tec = input.nextLine(); // String 2+ parts
input.next();
String path = "C:\\Test\\Sample\\" + file;
String chain = readFile(path);
ClinicalTest test = new ClinicalTest(chain, date, idUser, tec);
System.out.println(test.getDate()+"\n" + test.getTec());
createTest(test);
}
当输入日期12-12-2018 13:45和技术名称Mark Zus时,尝试创建测试失败。sysout 仅显示13:45。
我在每个 nextLine()
下尝试了 input.next()
,因为如果我不这样做,永远不会让我完成日期字段。
如果仅对每个条目使用nextLine()
,就会发生这种情况
最佳答案
我建议您阅读JavaDoc这对使用方法很有帮助。正如 nextLine()
方法上面所写:
This method returns the rest of the current line, excluding any line separator at the end. The position is set to the beginning of the next line.
这意味着通过使用 next()
方法,您正在读取输入的第一部分,然后当您使用 nextLine()
时,它会捕获该行的其余部分在您的输入示例中为 13:45。
所以你不需要input.next()
。以下代码完美运行:
public static void main(String[] args){
Scanner input = new Scanner(System.in);
String date = null;
String tec = null;
System.out.println("Enter name for test file :");
String file = input.nextLine();
System.out.println("Enter date formatted as dd/mm/yyyy hh:mm :");
date = input.nextLine(); //String 2 parts
System.out.println("Enter technician name :");
tec = input.nextLine(); // String 2+ parts
}
关于Java 在另一个 nextLine 后输入 nextLine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53678607/
代码: 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
我是一名优秀的程序员,十分优秀!