当我使用扫描仪时如何删除 Enter?

发布于 2024-12-05 12:35:18 字数 95 浏览 0 评论 0原文

我想编写一个程序,当我使用扫描仪时,您不需要按 Enter。有什么办法可以避免这种情况吗?它应该是一个非常简单的程序,但每次我写东西时,我都必须按回车键。

I want to write a program where you don't need to press Enter, when I'm using Scanner. Is there any way to avoid that? It supposed to be very simple program, but every time I am write something, I have to press enter.

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

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

发布评论

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

评论(1

不醒的梦 2024-12-12 12:35:18

如果您使用的是像“Then”这样的扫描仪

Scanner userInputScanner = new Scanner(System.in);
String scanInfo = userInputScanner.nextLine();

,则需要在之后按 enter,因为 文档说该方法:

使扫描器前进到当前行并返回跳过的输入。此方法返回当前行的其余部分,不包括末尾的任何行分隔符。该位置设置为下一行的开头。

由于此方法继续搜索输入以查找行分隔符,因此如果不存在行分隔符,它可能会缓冲搜索要跳过的行的所有输入。”

本质上,通过按 Enter 键,您可以告诉计算机您的输入已完成

如果您需要无需按 Enter 键即可扫描信息的工具,您可以扫描如下文本文件:

String input = "1 fish 2 fish red fish blue fish";                             
Scanner s = new Scanner(input);

除了输入之外,您还可以使用 txt 文件

注意:在字符串输入示例中,您可以可能想要使用分隔符(例如分隔字符串输入就我个人而言

Scanner s = new Scanner(input).useDelimiter(Character.isWhitespace);

,我喜欢使用 txt 文件,因为对于文件中的每一行,我都可以使用 .hasNext() 来获取数据。

If you are using a scanner like

Scanner userInputScanner = new Scanner(System.in);
String scanInfo = userInputScanner.nextLine();

Then you need to press enter after because the docs say the method:

Advances this scanner past the current line and returns the input that was skipped. 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.

Since this method continues to search through the input looking for a line separator, it may buffer all of the input searching for the line to skip if no line separators are present."

Essentially, by pressing enter you are telling the computer your input is done

If you need something that can scan information without pressing enter, you can scan a text file like this:

String input = "1 fish 2 fish red fish blue fish";                             
Scanner s = new Scanner(input);

Instead of input, you can use a txt file as well

Note: in the string input example, you would likely want to use a delimiter (for instance separating the String input at instances of white space)

Scanner s = new Scanner(input).useDelimiter(Character.isWhitespace);

Personally, I like using txt files because with each line in the file I can use .hasNext() to get the data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文