Advertisement
milutinke

Za Luku

Mar 24th, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public final static void clearConsole() {
  2. try {
  3. final String os = System.getProperty("os.name");
  4. Runtime.getRuntime().exec(os.contains("Windows") ? "cls" : "clear");
  5. } catch (final Exception e) {
  6. e.printStackTrace();
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement