+ 6
How to clean output screen in java
(in C/C++ we use clrscr(); or system ("cls"); please reply me
2 Answers
+ 9
Runtime.getRuntime().exec("cls");
//or
System.out.print("\033[H\033[2J");
System.out.flush();
+ 3
hey.. I'm using Eclipse IDE in windows 10 but your code is not working properly bro..