-1

如何clrscr()在c中的Java loke命令中清除屏幕。

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

请把代码:

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

也使用运行时类,但那不起作用请提供相同的代码来执行此操作。

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

     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");
    }
}
4

1 回答 1

0

这可以工作

Console console = System.console();        
console.clear();
于 2013-10-04T04:54:51.020 回答