Os eka mokakda, uba ahanne console eka app ekenma clear karana eka.ganada?
public final static void clearConsole()
{
try
{
final String os = System.getProperty("os.name");
if (os.contains("Windows"))
{
Runtime.getRuntime().exec("cls");
}
else
{
Runtime.getRuntime().exec("clear");
}
}
catch (final Exception e)
{
// Handle any exceptions.
}
}
meka balanne




void clearScreen() {
System.out.print("\033[H\033[2J");
System.out.flush();
}
Linux වලනම් මේකෙන් පුළුවන්, windows නම් try කරලා නෑ
Code:void clearScreen() { System.out.print("\033[H\033[2J"); System.out.flush(); }
