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.
<dependency>
<groupId>hu.ssh</groupId>
<artifactId>java-progressbar</artifactId>
<version>0.1.0</version>
</dependency>ProgressBarprogressBar = ConsoleProgressBar.on(System.out);
progressBar.tickOne();
// do somethingprogressBar.tick(25); // this will increase the percentage to 26// do the restprogerssBar.finish(); // this will finish it[==================================--------------------------] 57.00% 393ms
ProgressBarprogressBar = ConsoleProgressBar.on(System.out)
.withFormat("[:bar] :percent% :elapsed/:total ETA: :eta")
.withTotalSteps(500);:barthe progress bar:elapsedthe elapsed time since thestart()or the firsttick():percentthe percentage without the percent sign:etathe estimated time to accomplish:totalthe total time to complete
- it does not check whether the progressbar has been finished or not, so don't
call
finish()more than once