0

我有两个 jframe:WinA 和 WinB,我还有一个 Callable 类来做一个进程。

WinA 有一个按钮可以用 Callable 在线程中执行一个过程,并显示一个带有进度条的 WinB。

WinA类代码 - 按钮的 ActionPerformed。

 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        try {
            WinA wa = new WinA();
            WinB wb = new WinB();
             ClaseCallable callbd = new ClaseCallable();
             ExecutorService exesrv = Executors.newSingleThreadExecutor();
             Future sresp;
             sresp = exesrv.submit(callbd);
             wb.getProgressbar().setIndeterminate(true);
             wb.setVisible(true);
             System.out.println(">>" + sresp.get());
             exesrv.shutdown();
             wb.setVisible(false);
        } catch (InterruptedException | ExecutionException ex) {
            Logger.getLogger(WinA.class.getName()).log(Level.SEVERE, null, ex);
        }
    }          

ClaseCallable班级代码

public class ClaseCallable implements Callable<Integer> {

    @Override
    public Integer call() throws Exception {
        for(int i=0; i<10; i++){
            Thread.sleep(250);
        }
        return 33;
    }

}

当我运行WinA并按下按钮时,会打开WinB,但窗口是白色的,最后显示结果。

不明白为什么会发生这种情况,如果它在 EDT 线程中执行和摆动事件并在另一个线程中处理。

4

1 回答 1

1

您正在调用future.get()which 将阻塞直到任务完成:

来自http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/Future.html#get()

get V get() 抛出 InterruptedException, ExecutionException

如有必要,等待计算完成,然后检索其结果。

于 2013-07-01T18:17:46.260 回答