idea的java代码清空控制台
时间: 2023-06-05 12:08:30 浏览: 1102
idea快捷键整理
以下是清空控制台的Java代码:
```
// 方法一:
System.out.print("\033[H\033[2J");
// 方法二:
try {
if (System.getProperty("os.name").contains("Windows")) {
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
} else {
Runtime.getRuntime().exec("clear");
}
} catch (IOException | InterruptedException ex) {
// 处理异常
}
```
阅读全文