Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 Spring Shell。我的问题是,每当我将某些内容打印到标准输出时,除非用户按下 Enter 按钮,否则程序不会返回提示。是否有可能的方法来调用提示?
最大限度,
由于您没有提供任何代码,让我给您一些尝试。您可以返回一个字符串,而不是打印到标准输出。这种方法有缺点。您可以尝试刷新标准输出 - System.out.flush()。请查看这些方法中的任何一种是否适合您。
System.out.flush()
苏莱赫。