Whats The Method To Clear The Console In Java

[Solved] Whats The Method To Clear The Console In Java | Whatever - Code Explorer | yomemimo.com
Question : clear java console

Answered by : uninterested-unicorn-43gxj7ab1yka

public class ClearConsoleScreen { public static void main(String[] args){ System.out.print("Everything on the console will cleared"); System.out.print("\033[H\033[2J"); System.out.flush(); }
}

Source : https://www.delftstack.com/howto/java/java-clear-console/ | Last Update : Mon, 02 May 22

Answers related to whats the method to clear the console in java

Code Explorer Popular Question For Whatever