Answers for "Java clear console?"

1

java clear console

public static void clearScreen() {
        System.out.print("\033[H\033[2J");
        System.out.flush();
    }
Posted by: Guest on April-30-2021
2

java clear console

Runtime.getRuntime().exec("cls");
Posted by: Guest on June-23-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language