Hi,
I have done some research, trying to Clear The Screen in java code.
The first option was the obv:
system.out.prin t("\n\n\n\n\n\n \n\n\n\n\n\n");
then i heard about this method:
System.out.prin t((char)27 + "[2J");
However, it doen't work unless "ansi.sys" is loaded and very few WinXP
user's have this.
Any help appreciated in trying to solve this problem.
Cheers,
Dave
I have done some research, trying to Clear The Screen in java code.
The first option was the obv:
system.out.prin t("\n\n\n\n\n\n \n\n\n\n\n\n");
then i heard about this method:
System.out.prin t((char)27 + "[2J");
However, it doen't work unless "ansi.sys" is loaded and very few WinXP
user's have this.
Any help appreciated in trying to solve this problem.
Cheers,
Dave
Comment