如何清除Java中的屏幕 在c。
中执行lokeclrscr()
命令
我使用命令提示符来运行程序。
请输入代码:
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");
}
}
答案 0 :(得分:0)
这可行吗
Console console = System.console();
console.clear();