Java 需要某种 Clearscreen

Need some kind of Clearscreen for Java

就像我们在C/C++中有清晰的屏幕一样...有没有办法在Java中做同样的事情?我到处都找遍了,一无所获。

我试图用它来更新程序每秒显示的内容,摆脱之前出现的所有代码。 如果您知道任何其他方法可以做到这一点,我将不胜感激

谢谢:)

下面是在命令提示符下运行的代码示例

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();
 }
}