如何让java.io.Console显示一个默认值供用户确认或修改?

发布于 2024-11-07 05:10:03 字数 265 浏览 0 评论 0原文

新的 http://download.oracle.com/javase /6/docs/api/java/io/Console.html 类对于来自控制台的用户输入似乎没问题,但是,它似乎无法提供读取行的方法,但默认值已提交(因此用户只需按 Enter 确认或删除即可修改)。

我怎样才能在课堂上做到这一点?

the new http://download.oracle.com/javase/6/docs/api/java/io/Console.html class seems ok for user input from the console, however, it seems to provide no way to read a line but with the default already filed in (so the user only has to press enter to confirm or delete to modify).

How can i do this with the class?

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

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

发布评论

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

评论(1

Hello爱情风 2024-11-14 05:10:03

如果该行为空,则使用默认值。使用 commons-lang 的 StringUtils (或者您最喜欢的测试空行的方法)

if (StringUtils.isBlank(lineRead)) lineRead = "whatever default";

If the line is empty, use the default. Using commons-lang's StringUtils (or your favorite way of testing for empty lines)

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