“\b”在 Java 中 - Windows 实现
在运行 Windows 的计算机实验室中从事 Java 工作。
System.out.print ("Hello!");
System.out.print ("\b");
印刷
你好![]
其中 [] 是一个框,表示字体不支持的字符,或者具有无效的 ASCII 值或其他内容。
这是非常原始的东西,可以方便地制作精美的终端应用程序,所以请帮助我:)
Working on Java in a Windows-run computer lab.
System.out.print ("Hello!");
System.out.print ("\b");
Prints
Hello![]
Where [] is a box, so as to signify a character the font doesn't support, or has an invalid ASCII value or something.
This is something pretty primitive, and comes in handy to make fancy looking terminal applications, so please help me out :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道 Eclipse 的失败情况(天知道我已经竭尽全力试图解决我的同事使用 Eclipse 遇到的问题),但是您可以使用 [home] 角色来管理吗?
与您的目的相比,这与
\b
相比是一种拼凑,但如果您使用的输出不适用于一个控制字符,请尝试另一个控制字符! :)I don't know about Eclipse's failures (god knows I've pulled enough hair out trying to fix issues my coworker gets using Eclipse), but could you manage with using the [home] character?
It's a kludge compared to
\b
for your purpose, but if the output you're using doesn't work with one control character, try another! :)这个问题确实至少出现在 Eclipse 的控制台中,但肯定不会出现在 Windows 命令控制台中。
另请参阅此相关主题:如何获取退格键 \b在 Eclipse 的控制台中工作?
This problem indeed occurs in at least Eclipse's console, but certainly not in Windows command console.
Also see this related topic: How to get backspace \b to work in Eclipse’s console?