36

Java でプロセスのローリング パーセンテージを実装し、コンソールに表示する簡単な方法はありますか? 特定のプロセスでパーセンテージ データ型 (double) を生成しましたが、パーセンテージの新しい更新ごとに新しい行を出力するだけでなく、強制的にコンソール ウィンドウに表示して更新することはできますか? 私は Windows 環境で作業しているので、cls をプッシュして更新することを考えていましたが、Java に何らかの組み込み機能があることを望んでいました。すべての提案を歓迎します! ありがとう!

4

9 に答える 9

55

改行を印刷して\r、カーソルを行頭に戻すことができます。

例:

public class ProgressDemo {
  static void updateProgress(double progressPercentage) {
    final int width = 50; // progress bar width in chars

    System.out.print("\r[");
    int i = 0;
    for (; i <= (int)(progressPercentage*width); i++) {
      System.out.print(".");
    }
    for (; i < width; i++) {
      System.out.print(" ");
    }
    System.out.print("]");
  }

  public static void main(String[] args) {
    try {
      for (double progressPercentage = 0.0; progressPercentage < 1.0; progressPercentage += 0.01) {
        updateProgress(progressPercentage);
        Thread.sleep(20);
      }
    } catch (InterruptedException e) {}
  }
}
于 2009-06-16T13:03:30.513 に答える
14

次のコードを使用します。

public static void main(String[] args) {
    long total = 235;
    long startTime = System.currentTimeMillis();

    for (int i = 1; i <= total; i = i + 3) {
        try {
            Thread.sleep(50);
            printProgress(startTime, total, i);
        } catch (InterruptedException e) {
        }
    }
}


private static void printProgress(long startTime, long total, long current) {
    long eta = current == 0 ? 0 : 
        (total - current) * (System.currentTimeMillis() - startTime) / current;

    String etaHms = current == 0 ? "N/A" : 
            String.format("%02d:%02d:%02d", TimeUnit.MILLISECONDS.toHours(eta),
                    TimeUnit.MILLISECONDS.toMinutes(eta) % TimeUnit.HOURS.toMinutes(1),
                    TimeUnit.MILLISECONDS.toSeconds(eta) % TimeUnit.MINUTES.toSeconds(1));

    StringBuilder string = new StringBuilder(140);   
    int percent = (int) (current * 100 / total);
    string
        .append('\r')
        .append(String.join("", Collections.nCopies(percent == 0 ? 2 : 2 - (int) (Math.log10(percent)), " ")))
        .append(String.format(" %d%% [", percent))
        .append(String.join("", Collections.nCopies(percent, "=")))
        .append('>')
        .append(String.join("", Collections.nCopies(100 - percent, " ")))
        .append(']')
        .append(String.join("", Collections.nCopies(current == 0 ? (int) (Math.log10(total)) : (int) (Math.log10(total)) - (int) (Math.log10(current)), " ")))
        .append(String.format(" %d/%d, ETA: %s", current, total, etaHms));

    System.out.print(string);
}

結果: ここに画像の説明を入力

于 2016-08-31T19:51:44.760 に答える
6

あなたが探していることを行う組み込みの機能はないと思います。

それを行うライブラリがあります(JLine)。

このチュートリアルを参照してください

于 2009-06-16T12:56:41.807 に答える
4

Java はコンソール (標準出力) を PrintStream と見なすため、コンソールが既に出力したものを変更する方法はないと確信しています。

于 2009-06-16T12:58:26.717 に答える
2

Java自体に組み込まれているものについては知りませんが、端末制御コードを使用して、カーソルの位置を変更するなどのことを行うことができます. 詳細はこちら: http://www.termsys.demon.co.uk/vtansi.htm

于 2009-06-16T12:58:35.983 に答える
0

OS固有のコマンドを実行してコンソールをクリアし、新しいパーセンテージを出力します

于 2009-06-16T13:02:23.590 に答える
0
import java.util.Random;

public class ConsoleProgress {

    private static String CURSOR_STRING = "0%.......10%.......20%.......30%.......40%.......50%.......60%.......70%.......80%.......90%.....100%";

    private static final double MAX_STEP = CURSOR_STRING.length() - 1;

    private double max;
    private double step;
    private double cursor;
    private double lastCursor;

    public static void main(String[] args) throws InterruptedException {
        // ---------------------------------------------------------------------------------
        int max = new Random().nextInt(400) + 1;
        // ---------------------------------------------------------------------------------
        // Example of use :
        // ---------------------------------------------------------------------------------
        ConsoleProgress progress = new ConsoleProgress("Progress (" + max + ") : ", max);
        for (int i = 1; i <= max; i++, progress.nextProgress()) {
            Thread.sleep(3L); // a task with no prints
        }
    }

    public ConsoleProgress(String title, int maxCounts) {
        cursor = 0.;
        max = maxCounts;
        step = MAX_STEP / max;
        System.out.print(title);
        printCursor();
        nextProgress();
    }

    public void nextProgress() {
        printCursor();
        cursor += step;
    }

    private void printCursor() {
        int intCursor = (int) Math.round(cursor) + 1;
        System.out.print(CURSOR_STRING.substring((int) lastCursor, intCursor));
        if (lastCursor != intCursor && intCursor == CURSOR_STRING.length())
            System.out.println(); // final print
        lastCursor = intCursor;
    }
}
于 2017-03-18T20:52:31.890 に答える