BufferedReader 输入

发布于 2025-01-06 10:15:29 字数 364 浏览 0 评论 0原文

我有一个如下的代码段,它使用 BufferedReader 从命令 shell 读取输入:

    String choice = "";

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

    System.out.println("\nEnter choice: ");

    choice = br.readLine();

在本例中,假设“3”是我的输入,控制台打印如下:

输入选择:
3

我想知道如何使控制台打印如下:
输入选择:3

感谢任何帮助!

I have a code segment as below that uses BufferedReader to read inputs from command shell:

    String choice = "";

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

    System.out.println("\nEnter choice: ");

    choice = br.readLine();

In this case, assuming '3' is my input, the console prints as follows:

Enter choice:
3

I would like to know how can I make the console prints such that it appears as follows:
Enter choice: 3

Appreciate any help!

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

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

发布评论

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

评论(1

睫毛溺水了 2025-01-13 10:15:29

将 System.out.println("\nEnter choice "); 更改

System.out.print("\nEnter choice: ");

(println 在输入字符串末尾添加行终止符)

Change System.out.println("\nEnter choice ");

to

System.out.print("\nEnter choice: ");

(println adds a line terminator at the end of the input string)

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