1

PDF ファイルの作成に時間がかかるプログラムがあり、進行状況をユーザーに表示したい

PDFファイルの作成が終了したら、プログレスバーを呼び出してステータスを更新しようとします:

ProgressDialog progress = new ProgressDialog(instance, numberOfInvoices);
progress.setVisible(true);
progress.setAlwaysOnTop(true);

for(int i = 0 ; i<numOfPdfs ; i++){
    progress.change(i + 1);
}

進行状況ダイアログは次のようになります。

public class ProgressDialog extends JDialog {

    private JProgressBar progressBar;

    public ProgressDialog(Window parent, int aantal) {
        super(parent);

        this.setPreferredSize(new Dimension(300, 150));

        progressBar = new JProgressBar(0, aantal);
        progressBar.setValue(0);
        progressBar.setSize(new Dimension(280, 130));
        this.add(progressBar, BorderLayout.CENTER);

        this.pack();
        this.setLocationRelativeTo(parent);
    }

    public void change(int aantal) {
        if (aantal < progressBar.getMaximum() && aantal >= 0) {
            progressBar.setValue(aantal);
        }
    }
}

私が得るのは空のウィンドウだけです(白)

私はこのフォーラムを見回しましたが、トレッドソリューションは非常に複雑に見えます

2つのpdfファイルの計算の間に、GUIを更新できるはずですよね?

わかりましたコリン

私はこれを試しました:(完全なクラス)

public class ProgressDialog extends JDialog {

    private JProgressBar progressBar;
    private String message;
    private static int number;

    public ProgressDialog(Window parent, int max, String message) {
    super(parent);

    this.message = message;
    this.setPreferredSize(new Dimension(300, 150));

    progressBar = new JProgressBar(0, max);
    progressBar.setValue(0);
    progressBar.setSize(new Dimension(280, 130));
    progressBar.setString(message + " 0/" + progressBar.getMaximum());
    progressBar.setStringPainted(true);
    this.add(progressBar, BorderLayout.CENTER);

    this.pack();
    this.setLocationRelativeTo(parent);

    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));


    }

    public void change(int number) {
    ProgressDialog.number = number;
    SwingUtilities.invokeLater(new Runnable() {

        public void run() {
        int number = ProgressDialog.getAantal();
        if (number < progressBar.getMaximum() && number >= 0) {
            progressBar.getModel().setValue(number);
            progressBar.setString(message + " " + progressBar.getValue() + "/" + progressBar.getMaximum());
            System.out.println("progressbar update: " + number + "/" + progressBar.getMaximum());
        } else {
            setCursor(null);
            System.out.println("progressbar terminated");
        }
        }
    });
    }

    public static int getAantal(){
    return number;
    }
}

今でも空のウィンドウが表示されますが、すべての pdf の準備が整うと、進行状況バーが 0% 完了して表示され、閉じます (そうあるべきです)。

プロセス中に空白のままになる理由は何ですか?

4

2 に答える 2

5

スレッドでそれを行う必要があります。これは一般的な GUI フレームワークの設計であるため、逃げるよりも習得したほうがよいでしょう。

次のように簡単にできます。

public void change(int aantal) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            if (aantal < progressBar.getMaximum() && aantal >= 0) {
                progressBar.setValue(aantal);
            }
        }
    });
}

または に置き換えinvokeLater()ますinvokeAndWait()

于 2010-07-06T14:24:19.943 に答える
0

並行性に関する Swing チュートリアルのセクションを読んで、この問題にスレッドが必要な理由を理解してください。実際の例については、「進行状況バーの使用方法」のセクションもお読みください。

于 2010-07-06T15:18:15.490 に答える