如何使用 Scanner 在 java 中获取文件结尾

发布于 2024-12-13 18:43:18 字数 147 浏览 0 评论 0原文

我正在从 Scanner 和 system.in 获取输入,并且我想从输出中获取输入。我有一个循环 while(keyboard.hasnext()) 做某事。但是当我按回车键时,它没有得到任何信息,之后也没有得到任何输入,但程序仍在运行。所以我就陷入了这个循环。帮帮我吧伙计们。

I am getting input from Scanner and system.in and I want to get the enter from output. I have a loop as while(keyboard.hasnext()) do something. But when I hit enter it doesn't get anything and after that it doesn't get any input too but the program is still running. So I am stuck in this loop. Help me out guys.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伏妖词 2024-12-20 18:43:18
String input;
input = in.nextLine();
if (input.equals("") {
 done = true; //or do smth else
} 
String input;
input = in.nextLine();
if (input.equals("") {
 done = true; //or do smth else
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文