4

事情是这样的:我有一个用于 Java 应用程序主窗口的 JFrame,它包含一个带有多个 JProgressBar 的面板。我想为每个 JProgressBar 启动一个线程,它将自己启动另一个线程。当任何这个“辅助”线程完成时,我想更新我的 JFrame 中的 JProgressBar。此外,在安排这一切之前,由于我不希望用户能够单击 JFrame 上的任何内容,因此我还想在 JFrame 中设置一些按钮 setEnabled(false)。简单的?

ActivarBotones abFalse = new ActivarBotones(false);
abFalse.start();
try {
    abFalse.join();
} catch (InterruptedException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
}

EstablecerConexiones ec = new EstablecerConexiones();
ec.start();
try {
    ec.join();
} catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

ActivarBotones abTrue = new ActivarBotones(true);
abTrue.start();

两个问题。

  1. 如果我从上面运行代码,则没有任何更新。如果我只启动 ec 线程,一切正常。

  2. 我对同步知之甚少,也不知道我应该怎么做才能同时启动所有“主”线程。

有什么线索吗?

4

2 回答 2

2

这是一个小样本,我认为它不能回答你所有的问题,但它展示了基本概念(有一个生病的妻子并照顾一个 6 个月大的孩子,用一只手打字:P)

public class ThreadedProgress {

    public static void main(String[] args) {
        new ThreadedProgress();
    }

    public ThreadedProgress() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException ex) {
                } catch (InstantiationException ex) {
                } catch (IllegalAccessException ex) {
                } catch (UnsupportedLookAndFeelException ex) {
                }

                JPanel progressPane = new JPanel(new GridBagLayout());
                JProgressBar progressBar = new JProgressBar(0, 100);
                progressPane.add(progressBar);

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(progressPane);
                frame.setSize(200, 200);
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);

                new Thread(new MainThread(progressBar)).start();

            }

        });
    }

    public interface CallBack {
        public void done(Runnable runnable);
    }

    public static class MainThread implements CallBack, Runnable {

        public static final Object UPDATE_LOCK = new Object();
        public static final Object WAIT_LOCK = new Object();
        private List<Runnable> running = new ArrayList<>(25);
        private List<Runnable> completed = new ArrayList<>(25);
        private final JProgressBar progressBar;

        public MainThread(JProgressBar progressBar) {
            this.progressBar = progressBar;
        }

        @Override
        public void done(Runnable runnable) {
            synchronized (UPDATE_LOCK) {
                running.remove(runnable);
                completed.add(runnable);
            }
            int count = running.size() + completed.size();
            updateProgress(completed.size(), count);
            synchronized (WAIT_LOCK) {
                WAIT_LOCK.notify();
            }
        }

        protected void updateProgress(final int value, final int count) {
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    int progress = Math.round(((float) value / (float) count) * 100f);
                    progressBar.setValue(progress);
                }
            });
        }

        @Override
        public void run() {
            for (int index = 0; index < 5; index++) {
                ChildSpawn spawn = new ChildSpawn(this);
                running.add(spawn);
            }
            for (Runnable runnable : running) {
                new Thread(runnable).start();
            }

            while (running.size() > 0) {
                synchronized (WAIT_LOCK) {
                    try {
                        WAIT_LOCK.wait();
                    } catch (InterruptedException ex) {
                    }
                }
            }
            System.out.println("I'm all done");
        }
    }

    public static class ChildSpawn implements Runnable {

        private CallBack callBack;

        public ChildSpawn(CallBack callBack) {
            this.callBack = callBack;
        }

        @Override
        public void run() {
            try {
                Thread.sleep((long)Math.round(Math.random() * 5000));
            } catch (InterruptedException ex) {
            }

            callBack.done(this);            
        }

    }

}
于 2012-10-18T22:50:06.097 回答
1

ActivarBotones线程未完成。

如果它在您不运行该线程时有效,那么该线程中的某些内容未完成。否则,它将通过EstablecerConexiones线程。由于您.join()在启动该线程后调用它,因此在该线程完成之前代码不会继续。所以那里一定有什么东西阻塞或陷入循环。

ActivarBotones在调试模式下运行您的应用程序并在线程中放置一个断点。追踪它,看看为什么它没有完成。

对于您的第二个问题,如果您启动每个主线程但在它们全部启动之前不加入它们,它们将全部同时运行。当然,这大大简化了事情。许多人更喜欢使用执行器服务来控制他们的线程。您还必须担心线程安全实现,以免遇到同步问题。最后,如果您正在与 Swing 组件交互,那么所有这些都需要在专用的事件调度线程上完成。

于 2012-10-18T14:59:54.817 回答