如何在 Java 中清除屏幕?
我使用 while 循环和 switch case 创建了一个菜单驱动的简单演示程序。一个循环完成后,我想清除一个屏幕,但这不起作用。我会很高兴有一个可能的解决方案。
我正在使用 JDK 7 并在命令提示符下运行程序。
import java.util.*;
class DemoPrg
{
public static void main(String argv[])
{
int ch;
Scanner sc=new Scanner(System.in);
while(true)
{
// i want to clear the scrren hear
System.out.println("1. Insert New Record");
System.out.println("2. Display Record");
System.out.println("3. Delete Record");
System.out.println("4. Edit Record");
System.out.println("0. Exit");
System.out.print("Enter Your Choice:");
ch=sc.nextInt();
switch(ch)
{
case 1:
System.out.println("insert");
break;
case 2:
System.out.println("display");
break;
case 3:
System.out.println("delete");
break;
case 4:
System.out.println("edit");
break;
case 0:
System.exit(0);
default:
System.out.println("invalid");
}
}
}
}