命令在java中清除屏幕
问题描述:
在Java中什么命令会让您在命令行应用程序中清除控制台?
What command in Java will let you clear the console in a command-line application?
答
想要的是清除屏幕并将光标移动到原始位置。对于那个尝试:
I think what the OP wants is to clear the screen and move the cursor to the home position. For that try:
final String ANSI_CLS = "\u001b[2J";
final String ANSI_HOME = "\u001b[H";
System.out.print(ANSI_CLS + ANSI_HOME);
System.out.flush();