就像我们在C / C ++中有清晰的屏幕一样......有没有办法在Java中做同样的事情?我到处寻找,一无所获。
我正在尝试使用它来更新程序每秒显示的内容,删除之前出现的所有代码。 如果您知道其他任何方式,我会非常感激
谢谢:)
答案 0 :(得分:0)
以下是在命令提示符下工作的代码示例
import java.io.*;
public class ClearDemo
{
public static void main(String args[])throws IOException,InterruptedException
{
System.out.println("Hello ,this is test program");
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
}
}