如何在cmd中清除java中的屏幕

时间:2013-10-04 04:49:01

标签: java

如何清除Java中的屏幕 在c。

中执行loke clrscr()命令

我使用命令提示符来运行程序。

请输入代码:

class Demo
{
    public static void main(String[] s)
    {
        //clear scrren hear
        System.out.println("Hello World");
    }
}

同样使用Runtime类但不起作用请使用相同的代码来执行此操作。

也使用此代码但不起作用:

     import java.io.*;  
       class demo
{
    public static void main(String[] s)
    {   
        try
{
    String os = System.getProperty("os.name");

    if (os.contains("Windows"))
    {
        Runtime.getRuntime().exec("cls");
    }
    else
    {
        Runtime.getRuntime().exec("clear");
    }
}
catch (Exception exception)
{
}
        //clear scrren hear
        System.out.println("Hello World");
    }
}

1 个答案:

答案 0 :(得分:0)

这可行吗

Console console = System.console();        
console.clear();