如何清除 Java 9 JShell Console?
我没有找到任何清除Java-9 JShell控制台的命令。我还试图通过此程序清除JShell控制台,但它也不起作用。
import java.io.IOException;
class CLS {
public static void main(String... arg) throws IOException, InterruptedException {
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
}
}
我认为我们在抢先体验中还没有可用的功能。有人有想法吗?