web-dev-qa-db-ja.com

Java:コマンドラインのテキストを改行せずに更新する

コマンドラインに進捗インジケーターを追加したいJavaプログラム。

たとえば、wgetを使用している場合は、次のように表示されます。

71% [===========================>           ] 358,756,352 51.2M/s  eta 3s

下部に新しい行を追加せずに更新される進行状況インジケーターを持つことは可能ですか?

ありがとう。

42
Tom Marthenal

最初に書くときは、writeln()を使用しないでください。 write()を使用します。次に、改行である\ nを使用せずに、キャリッジリターンに「\ r」を使用できます。改行すると、行の先頭に戻ります。

45
rfeak

私は次のコードを使用します:

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((int) (Math.log10(total)) - (int) (Math.log10(current)), " ")))
        .append(String.format(" %d/%d, ETA: %s", current, total, etaHms));

    System.out.print(string);
}

結果: - enter image description here

53
Mike Shauneu