Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 6, 2018 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/71dceac0391c0323ceb6c9e034568831 to your computer and use it in GitHub Desktop.
Save parzibyte/71dceac0391c0323ceb6c9e034568831 to your computer and use it in GitHub Desktop.
import java.io.IOException;
class LimpiarPantalla {
public static void main(String[] args) {
try {
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
} catch (Exception e) {
/*No hacer nada*/
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment