Skip to content

Instantly share code, notes, and snippets.

@alfasin
Created August 9, 2015 03:29
Show Gist options
  • Save alfasin/8ac7f19a91d84274139e to your computer and use it in GitHub Desktop.
Save alfasin/8ac7f19a91d84274139e to your computer and use it in GitHub Desktop.
import org.apache.commons.lang.StringUtils;
public class ProgressBar {
public static void main(String Args[]) throws InterruptedException {
for (int i=1; i<11; i++) {
String str = "[" + StringUtils.repeat("#", i) + StringUtils.repeat(" ", 10-i) +"] " + i*10 +"% \r";
System.out.print(str);
Thread.sleep(1000);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment