kavindagk

Well-known member
  • Dec 18, 2008
    985
    1,000
    93
    Colombo
    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
     
    • Like
    Reactions: Slim_Roethlisberger

    Slim_Roethlisberger

    Active member
  • Nov 19, 2017
    298
    62
    28
    LA
    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

    :eek::eek::eek::eek: