Java: Clear the console

后端 未结 14 2696
青春惊慌失措
青春惊慌失措 2020-11-21 23:26

Can any body please tell me what code is used for clear screen in Java? For example in C++

system(\"CLS\");

What code is used in Java for

14条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-22 00:12

    This will work if you are doing this in Bluej or any other similar software.

    System.out.print('\u000C');
    

提交回复
热议问题