I have a Java program running in command line mode. I would like to display a progress bar, showing the percentage of job done. The same kind of progress bar you would see using wget under unix. Is there a library to make this possible ?
feedback
|
|
I have implemented this sort of thing before. Its not so much about java, but what characters to send to the console. The key is the difference between So the thing to do is to print your progress bar, for example, by printing the string
On the next tick of the progress bar, overwrite the same line with a longer bar. (because we are using \r, we stay on the same line) For example:
What you have to remember to do, is when done, if you then just print
You may still have some garbage from the progress bar on the line. So after you are done with the progress bar, be sure to print enough whitespace to remove it from the line. Such as:
Hope that helps. | ||||
|
feedback
|
|
C# Example but I'm assuming this is the same for Basically, you want to write out the
| |||
|
feedback
|
|
Take a look at this page:Command Line Progress Bar | |||
|
feedback
|
|
Something like this? | |||||
feedback
|
|
This would be possible with a Java Curses library. This is what I have found. I haven't used it myself and I don't know if it is cross-platform. | |||
feedback
|
|
I found the following code to work correctly. It writes bytes to the output buffer. Perhaps that methods using a writer like the System.out.println() method replaces the occurrences of \r to \n to match the target's native line ending(if not configured properly).
| |||
|
feedback
|