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.
我想提示用户输入一个百分比,并且我希望百分比符号在用户键入时位于该提示的末尾。这可能吗?如果有怎么办?
在纯 Java 中,您只能在输入整个like 后才能响应输入。
你可以做的是写类似
System.out.print("Enter a percentage: %\u0008\u0008\u0008\u0008");
这可能会将光标定位到:离开%提示之后。这取决于使用的控制台类型。
:
%
如果要在键入时获取每个字符或控制其显示方式,则需要使用 GUI 界面,例如 Swing。