我正在尝试使用 Scanner(System.in) 进行输入,但它不允许我这样做。帮助!
因此,我尝试使用 Scanner(System.in) 从用户那里获取输入,但是当我尝试在控制台中输入某些内容时,它不会让我这样做。
有人可以帮忙吗?
Function.show();
Scanner input = new Scanner(System.in);
if (input.equals("a"))
{
Function.outputFile(1, list);
}
input.close();
So I'm trying to take an input from a user using Scanner(System.in) but when i try to type something into the console it won't let me.
Can anyone help?
Function.show();
Scanner input = new Scanner(System.in);
if (input.equals("a"))
{
Function.outputFile(1, list);
}
input.close();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您忘记在扫描仪上调用
next
。您的if
行应该改为if (input.next().equals("a"))
。You're forgetting to call
next
on the Scanner. Yourif
line should beif (input.next().equals("a"))
, instead.我建议在开关中使用 input.next.charAt(0) ...
如果将其分开,(即字符字母),您可以使用
switch
(letter.toUpperCase()) [理论上...我从来没有尝试过]然后你就不必担心
case
。I would recommend using input.next.charAt(0) in a switch...
If you separate it, (I.E. char letter) you can use
switch
(letter.toUpperCase()
) [in theory... I've never tried it] and then you don't have to worry aboutcase
.