Java: Clear the console

后端 未结 14 2974
青春惊慌失措
青春惊慌失措 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:29

    Runtime.getRuntime().exec(cls) did NOT work on my XP laptop. This did -

    for(int clear = 0; clear < 1000; clear++)
      {
         System.out.println("\b") ;
      }
    

    Hope this is useful

提交回复
热议问题