Answers for "console.clear() java"

4

java clear console

// in JDK 11 you can do:

// It can be better than exec("cls") because it even works in intellij.
// Also, putting println() in a for loop is worse because there is a
// noticable delay between calls. This code does a single call, but
// stacks a ton of '\n's.

private void clearConsole() {
	System.out.println(System.lineSeparator().repeat(100));
}
Posted by: Guest on June-21-2021
1

java clear console

String[] cmd;
//checking for OS
if(System.getProperty("os.name").contains("win")){
	cmd=new String[]{"cmd", "/c", "cls"};
}else{
	cmd=new String[]{"cls"};
}
//clearing the screen
ProcessBuilder pb=new ProcessBuilder(cmd);
pb.redirectInput(ProcessBuilder.Redirect.INHERIT);
Process process=pb.start();
Posted by: Guest on January-31-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language