6
public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(MyDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(MyDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(MyDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(MyDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the dialog */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            MyDialog dialog = new MyDialog(new javax.swing.JFrame(), true);
            dialog.addWindowListener(new java.awt.event.WindowAdapter() {
                @Override
                public void windowClosing(java.awt.event.WindowEvent e) {
                    System.exit(0);
                }
            });
            dialog.setVisible(true);
        }
    });
}

MyDialog 类只有很少的组合和文本字段,并且正在使用 DB 值填充组合。在选择一个组合值时,我从数据库中获取另一个值以填充下一个组合。

上面的程序运行方式相同,没有使用 invokeLater 线程。什么时候 invokeLater 在 Swing 编程中变得有用。我读过一些关于它的文章,但似乎都是理论上的。invokeLater 对应用程序有什么影响?仅在 main 方法中使用它就足够了,还是应该在动作侦听器中使用它?

SwingUtilities.invokeLater 和 java.awt.EventQueue.invokeLater - 它们是一样的吗?

4

1 回答 1

6

没有什么理论上的。这是非常实用的。该SwingUtilities.invokeLater()方法保证 . 中的代码Runnable将在Event Dispatch Thread (EDT). 这很重要,因为 Swing 不是线程安全的,因此与 GUI(Swing等)相关的任何内容都需要在EDT. 这EDT是一个“它发生时发生”的线程,它不保证事情的执行顺序。如果 GUI 代码在后台线程中执行(例如,在一个SwingWorker实例中),那么它可能会抛出错误。我很难学到这一点:在我的学习岁月中,在后台线程中执行更改 GUI 的代码会导致RuntimeException我无法弄清楚的随机、不一致的 s。这是一次很好的学习经历(SwingWorker有一个doInBackground()后台任务的方法和一个done()任务方法EDT)。

与您不想在后台线程上执行 GUI 代码一样,您也不想在EDT. 这是因为它EDT正在调度所有的 GUI 事件,所以所有的东西都EDT应该非常简短和甜蜜。你可以很容易地看到这与一JProgressBar组不确定。

这个 SSCCE 应该很好地说明它。注意JProgressBaras的运动method(),一次在后台线程上,一次在EDT线程上。

import javax.swing.JFrame;
import javax.swing.JProgressBar;
import javax.swing.SwingWorker;

/**
 *
 * @author Ryan
 */
public class Test {

    public static void main(String args[]) {
        JFrame frame = new JFrame();
        JProgressBar jpb = new JProgressBar();
        jpb.setIndeterminate(true);
        frame.add(jpb);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        new Task().execute();
    }

    public static void method() { // This is a method that does a time-consuming task.
        for(int i = 1; i <= 5; i++) {
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println(i);
        }
    }

    static class Task extends SwingWorker<Void, Void> {

        @Override
        protected Void doInBackground() throws Exception {
            /* Executing method on background thread.
             * The loading bar should keep moving because, although method() is time consuming, we are on a background thread.
            */ 
            method();
            return null;
        }

        @Override
        protected void done() {
            /* Executing method on Event Dispatch Thread.
             * The loading bar should stop because method() is time consuming and everything on the Event Dispatch Thread
             * (like the motion of the progress bar) is waiting for it to finish.
            */

            // 
            method();
        }
    }
}

希望这可以帮助。

于 2013-09-03T05:43:38.790 回答