6

我有一组执行文件操作的 API,例如saveToFile(CustomObject objectToSave);

由于文件操作可能很长,我决定应该向用户显示一些指示,例如进度条。

我读到了 a ProgressMonitorDialog,所以我尝试了它,但它并不能完全按照我的需要工作(或者更好的是我不知道如何正确使用它)。

目前我做:

ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(theShell);  
    try {  
        progressDialog.run(false, true, new IRunnableWithProgress() {  

        @Override  
        public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {  
            monitor.beginTask("Saving your data", 100);  
            try {  
                Utils.saveToFile(objectToSave);  
            } catch (Exception e) {  
            // TODO Auto-generated catch block  
                e.printStackTrace();  
            }  
            monitor.done();   
        }  
     });   

这段代码非常快地显示了一个进度对话框并结束,但问题是在较慢的 PC 上,这将堆叠直到Utils.saveToFile返回,而我不知道如何指示中间过程,直到保存完成。

我发现一个线程提到IProgressMonitor.UNKNOWN但它没有说明monitor期间发生的事情performRead(_fileName, monitor);

我将如何解决这个问题?

4

1 回答 1

11

ProgressMonitorDialog是一段棘手的代码。我猜你缺少的部分是IProgressMonitor#worked(int)哪个会“增长”进度条。下面是一个代码示例,应该阐明如何使用它:

public class Progress {
    public static void main(String[] args)
    {
        // Create your new ProgressMonitorDialog with a IRunnableWithProgress
        try {
            // 10 is the workload, so in your case the number of files to copy
            IRunnableWithProgress op = new YourThread(10);
            new ProgressMonitorDialog(new Shell()).run(true, true, op);
         } catch (InvocationTargetException ex) {
             ex.printStackTrace();
         } catch (InterruptedException ex) {
             ex.printStackTrace();
         }
    }

    private static class YourThread implements IRunnableWithProgress
    {
        private int workload;

        public YourThread(int workload)
        {
            this.workload = workload;
        }

        @Override
        public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException
        {
            // Tell the user what you are doing
            monitor.beginTask("Copying files", workload);

            // Do your work
            for(int i = 0; i < workload; i++)
            {
                // Optionally add subtasks
                monitor.subTask("Copying file " + (i+1) + " of "+ workload + "...");

                Thread.sleep(2000);

                // Tell the monitor that you successfully finished one item of "workload"-many
                monitor.worked(1);

                // Check if the user pressed "cancel"
                if(monitor.isCanceled())
                {
                    monitor.done();
                    return;
                }
            }

            // You are done
            monitor.done();
        }

    }
}

它看起来像这样:

在此处输入图像描述

对于您使用的特殊情况,Utils.saveToFile您可以将其IProgressMonitor交给此方法并worked()从那里调用该方法。

于 2012-10-20T10:30:02.283 回答