|
hace 3 meses | |
---|---|---|
.. | ||
src | hace 3 meses | |
.gitignore | hace 3 meses | |
.travis.yml | hace 3 meses | |
README.md | hace 3 meses | |
build.gradle | hace 3 años | |
testng.xml | hace 3 meses |
This is a simple console progressbar for Java. It can be used in CLI programs to display progress for long tasks.
It was born because I could not find a simple progress bar implementation for console based Java applications.
The inspiration came from visionmedia's node-progress.
ProgressBar progressBar = ConsoleProgressBar.on(System.out);
progressBar.tickOne();
// do something
progressBar.tick(25); // this will increase the percentage to 26
// do the rest
progerssBar.finish(); // this will finish it
[==================================--------------------------] 57.00% 393ms
ProgressBar progressBar = ConsoleProgressBar.on(System.out)
.withFormat("[:bar] :percent% :elapsed/:total ETA: :eta")
.withTotalSteps(500);
:bar
the progress bar:elapsed
the elapsed time since the start()
or the first tick()
:percent
the percentage without the percent sign:eta
the estimated time to accomplish:total
the total time to completefinish()
more than once