HI I am a new java programmer (very new).

What I want to do/test is (not sure if its recommendable or doable?), we know that

System.out.println("Message");

will output the "Message" in command prompt. Is it possible to display the current time, without having to repeatly use the system.out.println()?

Name, like instead of displaying:

10:00:01
10:00:02
10:00:03

I wand to have liek this: 10:00:0X where X will continue counting

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

If you emit a \r (carriage-return) instead of a \n (line-end), in most terminals, the cursor will go back to the start of the same line, so you can "overwrite" the line next time. println automatically adds a \n, but you can use System.out.print (without the ln part;-) to avoid that (you may also have to call method flush to make sure everything you printed was actually output, as opposed to being held in a memory buffer).

link|improve this answer
cool!! I did not know this though. – Winston Chen May 7 '10 at 3:54
so, something liek this: system.out.print("message"); flush();? Sorry, I am still a noob java programmer – javaLearner.java May 7 '10 at 4:01
What's up with this week and \r questions? :) stackoverflow.com/questions/2774596/… – DVK May 7 '10 at 4:10
BTW, in the interest of completeness, "\r" is referred to as "Carriage Return" character (originating from typewriter days when you "returned the carriage" to the beginning of the line :) – DVK May 7 '10 at 4:12
@DVK: Means, there are more and more new programmers nowadays? Most new programmers starts their programming life by using simple "print" function (thats how I learn my first programming language) lol – javaLearner.java May 7 '10 at 4:15
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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