About 81,800 results
Open links in new tab
  1. How to clear the console using Java? - Stack Overflow

    Can any body please tell me what code is used for clear the screen in Java? For example, in C++: system("CLS"); What code is used in Java to clear the screen?

  2. commands in java to clear the screen - Stack Overflow

    Feb 3, 2011 · What command in Java will let you clear the console in a command-line application?

  3. Clear screen with Windows "cls" command in Java console …

    Oct 8, 2013 · Java: Clear the console Replacing "cls" with "cmd \C cls" only opened a new command prompt, cleared it, and closed it without accessing the current console. How do I …

  4. How to Clear Console in Java? - Stack Overflow

    I have researched for an hour on how to clear a console in Java. All I found was dirty hacking either by printing a bunch of lines or executing this Runtime.getruntime.exec("cls/clear"); …

  5. Clear console screen in Java - Stack Overflow

    Apr 25, 2023 · 0 For Windows, Java Console API project provides functionality to determine console size and set cursor position. Clearing the screen is trivial with that. It's a version 0.2 …

  6. How to clear console in Java - Eclipse - Stack Overflow

    May 18, 2016 · I'm thinking that you are tring to, with java, clear Eclipse console. Is that right? If so, I think you may not influence in application console this way. Unless you are developing …

  7. How to use clear screen in Java - Stack Overflow

    Oct 2, 2013 · How to clear the screen in Java? I have created one menu driven simple demo program using while loop and switch case. After one loop completes, I want to clear a screen …

  8. java - How to delete stuff printed to console by System.out.println ...

    In a Java application I'm using some calls to System.out.println(). Now I want to find a way to programmatically delete this stuff. I couldn't find any solution with google, so are there any hints?

  9. java - Clearing console in Intellij-idea - Stack Overflow

    Sep 15, 2017 · java intellij-idea edited Sep 15, 2017 at 14:51 Arnav Borborah 11.8k85194 asked Sep 15, 2017 at 14:48 stilltryingbutstillsofar 355249 Possible duplicate of Java: Clear the …

  10. what code can i use to clear the screen (java)? [duplicate]

    Nov 14, 2017 · I'm writing a text-based unit converter and I want to be able to run a clear command so that the window that the program I want to know how I can do it.