如何使用 Java 清除在命令行中打印的文本?我想Text1
在打印后清除并用Text2
. 我搜索并找到此代码,但它不起作用。
public class className {
public static void main(String[] args) throws IOException {
System.out.println("Text1");
Runtime.getRuntime().exec("cls");
System.out.println("Text2");
}
}