How do you clear the Java Console? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T02:24:13Zhttp://stackoverflow.com/feeds/question/606086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/606086/how-do-you-clear-the-java-console2How do you clear the Java Console?n002213f2009-03-03T11:50:32Z2009-03-03T13:07:06Z
<p>I have output messages displayed on the <a href="http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/console.html" rel="nofollow">Java console</a> for an application that started using webstart. Instead of the user manually clearing message, is there a way of clearing console messages in code?</p>
<p>These messages are printed at the rate of about 1000 per second and seem to end up using too much memory, i could have stopped the printing to console, but the requirement is to always have it.</p>
http://stackoverflow.com/questions/606086/how-do-you-clear-the-java-console/606111#6061111Answer by boutta for How do you clear the Java Console?boutta2009-03-03T11:58:24Z2009-03-03T11:58:24Z<p>Seems to me the requirement should be rediscussed. If this isn't an alternative then you may limit the amount of output, because a 1000 messages/s seems an awful lot to me.</p>
<p>I don't know if you even can programmatically clear the console.</p>
http://stackoverflow.com/questions/606086/how-do-you-clear-the-java-console/606323#6063234Answer by guyumu for How do you clear the Java Console?guyumu2009-03-03T13:07:06Z2009-03-03T13:07:06Z<p>You will not be able to clear that console, unless you find some handle on the classes for that console (which I doubt you would have access to).</p>
<p>The requirement you have has the inevitable requirement that the user will need to go in and manually clear the console every couple of minutes.
I think that justifies a rethink about why the requirement exists and wether there is another solution to solve your problem.</p>
<p>Have you considered a different way of logging? </p>