//Console.java -- written by jesus capuchino // //finally a class to clear the screen in java. class Console { public Console() {} void cls() { System.out.print ("\033[2J"); //clear the entire screen System.out.print ("\033[0;0f"); //move cursor to the top of the screen } }