I am writing a console app in java. Is there a way to change certain lines in the console to new values so it looks a bit dynamic or even clear the whole screen?

The console I am using is the one in jcreator.

link|improve this question

43% accept rate
Is ther a way of getting the number of lines in an ouput before you come into scrolling? – user174084 Oct 8 '09 at 1:32
feedback

3 Answers

You could try one of these

link|improve this answer
feedback

I think the only thing you can do is print out new lines with the values you need on them. To clear the screen you would need to just print a bunch of blank lines.

link|improve this answer
feedback

Once you print it out, you've lost control. If you want to be able to dynamically update it and do what you're trying to do, consider using a JTextPane (or whichever text component suits you best) as a custom console instead of the default console.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.