如何在Eclipse中執行/打印幾條語句後清除控制檯。我使用了flush(),但沒有工作。只需發佈示例代碼。如何在Java中清除控制檯 - Eclipse
System.out.println("execute ");
System.out.println("these set of lines ");
System.out.println("first");
Thread.sleep(2000); // just to see the printed statements in the console
System.out.flush(); // it is not clearing the above statements
我在想,你正在使用java,清除Eclipse控制檯。是對的嗎?如果是這樣,我認爲你可能不會以這種方式影響應用程序控制臺。除非你正在開發一些工具在eclipse中使用。 – mvalho
你爲什麼需要這個? – hurricane
是的,這僅限於Eclipse而不是任何生產應用程序 –