Is There Any Syntax Of Java Clear Screen?

Asked By 10 points N/A Posted on -
qa-featured

While doing java programming, I’ve to clear the terminal window after every output. I am fed up of it. Is there any syntax of Java clear screen?

SHARE
Answered By 5 points N/A #324373

Is There Any Syntax Of Java Clear Screen?

qa-featured

There is definitely way out to it. Follow the given steps:

• import java.io.*;

System.out.flush();

OR

• import java.io.*;
System.out.println(“/c000”);

Related Questions