我有一个控制台应用程序,我想在命令行上放置一个非确定性的进度条,同时完成一些繁重的计算。目前我只是打印出'。'对于while循环中的每次迭代,类似于以下内容:
while (continueWork){
doLotsOfWork();
System.out.print('.');
}
哪个有效,但我想知道是否有人有更好/更聪明的想法,因为如果循环中有很多迭代,这可能会有点烦人。
答案 0 :(得分:3)
尝试使用回车\r
。
答案 1 :(得分:3)
这是一个显示旋转进度条和传统风格的示例:
import java.io.*;
public class ConsoleProgressBar {
public static void main(String[] argv) throws Exception{
System.out.println("Rotating progress bar");
ProgressBarRotating pb1 = new ProgressBarRotating();
pb1.start();
int j = 0;
for (int x =0 ; x < 2000 ; x++){
// do some activities
FileWriter fw = new FileWriter("c:/temp/x.out", true);
fw.write(j++);
fw.close();
}
pb1.showProgress = false;
System.out.println("\nDone " + j);
System.out.println("Traditional progress bar");
ProgressBarTraditional pb2 = new ProgressBarTraditional();
pb2.start();
j = 0;
for (int x =0 ; x < 2000 ; x++){
// do some activities
FileWriter fw = new FileWriter("c:/temp/x.out", true);
fw.write(j++);
fw.close();
}
pb2.showProgress = false;
System.out.println("\nDone " + j);
}
}
class ProgressBarRotating extends Thread {
boolean showProgress = true;
public void run() {
String anim= "|/-\\";
int x = 0;
while (showProgress) {
System.out.print("\r Processing " + anim.charAt(x++ % anim.length()));
try { Thread.sleep(100); }
catch (Exception e) {};
}
}
}
class ProgressBarTraditional extends Thread {
boolean showProgress = true;
public void run() {
String anim = "=====================";
int x = 0;
while (showProgress) {
System.out.print("\r Processing "
+ anim.substring(0, x++ % anim.length())
+ " ");
try { Thread.sleep(100); }
catch (Exception e) {};
}
}
}
答案 2 :(得分:1)
在GUI应用程序中,该方法通常是旋转圆圈或弹跳/循环进度条。我记得很多控制台应用程序使用斜杠,管道和连字符来创建旋转动画:
\ | / -
您还可以在括号中使用弹跳字符:
[-----*-----]
当然,正如另一个回答提到的那样,你想使用return返回行的开头,然后打印进度,覆盖现有的输出。
编辑:威尔在评论中提到了许多更酷的选项:
答案 3 :(得分:0)
如果您知道需要做多少工作以及剩下多少(或已完成),您可以考虑打印一个百分比完整条形图的进度条。根据此项目的范围,这可能只是在ascii
或您也可以考虑使用图形。