炎炎设计
我就是这样处理的。此方法适用于Windows OS情况和Linux/Unix操作系统情况(这意味着它也适用于MacOSX)。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.
}}