2

我有一个可能需要很长时间才能执行的方法。我们称之为longTime();

此方法是从按钮上的动作侦听器调用的。

我想"Please wait.."在此方法执行时显示一条消息。

问题是Jframe没有响应,它似乎被卡住或等待某些东西。

重要提示: 的运行时间longTime()可以不同。只有在超过 2-3 秒时才会出现问题。

我试图做所有这些,invokeLate但没有帮助。

SwingUtilities.invokeLater(new Runnable() {
  @Override
  public void run() {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    JLabel label = new JLabel("Please wait...");
    label.setFont(new Font("Serif", Font.PLAIN, 25));
    frame.getContentPane().add(label, BorderLayout.CENTER);
    frame.setLocationRelativeTo(null);
    frame.setUndecorated(true);
    frame.pack();
    frame.setAlwaysOnTop(true);
    frame.setVisible(true);
    try{            
      longTime();  //HERE IS THE FUNCTION THAT TAKES A LONG TIME  
    }catch(Exception e){   }
    frame.dispose();  //AFTER THE LONG FUNCTION FINISHES, DISPOSE JFRAME        
  } 
});

关于如何解决这个问题的任何想法?

4

5 回答 5

3

所有冗长的任务都应该发生在一个单独的线程中,以防止 GUI 线程(事件调度线程)被阻塞。我建议您考虑使用SwingWorker对象来执行冗长的任务并在完成后执行操作。

您可以在http://docs.oracle.com/javase/tutorial/uiswing/concurrency/worker.html阅读有关此主题的更多信息。

于 2013-02-11T08:50:27.503 回答
3
  • 有两种方法,使用JLayer (Java7)基于JXLayer (Java6)or Glasspane,使用JLabel(with intermediate Icon) 调用

    1. SwingWorker

    2. (最简单)从Runnable.Thread(输出到 Swing GUI 必须包含在invokeLater

  • 仔细使用Swing 中的 Concurency,所有更改都必须在 EDT 上完成

  • 不要重新发明轮子,@camickr 的代码示例

于 2013-02-11T08:53:10.790 回答
2

用一个简单的例子突出 mKorbel 和 Ducan 的建议(对两者都 +1)......

public class RunLongTime {

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

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

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public interface WorkMonitor {

        public void updateProgress(float progress);
        public void done();

    }

    public class TestPane extends JPanel implements WorkMonitor {

        private JLabel message;
        private JButton button;

        public TestPane() {
            message = new JLabel("Click to get started");
            button = new JButton("Start");
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.insets = new Insets(2, 2, 2, 2);
            add(message, gbc);
            add(button, gbc);

            button.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    button.setEnabled(false);
                    message.setText("Getting started...");
                    BackgroundWorker worker = new BackgroundWorker(TestPane.this);
                    worker.execute();
                }
            });
        }

        @Override
        public void updateProgress(float progress) {
            message.setText("Please wait..." + NumberFormat.getPercentInstance().format(progress));
        }

        @Override
        public void done() {
            message.setText("All done...");
            button.setEnabled(true);
        }

    }

    public class BackgroundWorker extends SwingWorker<Void, Float> {

        private WorkMonitor monitor;

        public BackgroundWorker(WorkMonitor monitor) {
            this.monitor = monitor;
        }

        @Override
        protected void done() {
            monitor.done();
        }

        @Override
        protected void process(List<Float> chunks) {
            monitor.updateProgress(chunks.get(chunks.size() - 1));
        }

        @Override
        protected Void doInBackground() throws Exception {
            for (int index = 0; index < 1000; index++) {
                Thread.sleep(125);
                publish((float)index / 1000f);
            }
            return null;
        }

    }

}
于 2013-02-11T09:14:33.180 回答
1

您必须生成另一个线程并在另一个线程中运行您的 longTime() 任务。调用 invokeLater() 仍然在 UI 线程中运行它,您不想阻止它。

考虑以下代码:

    final JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    JLabel label = new JLabel("Please wait...");
    label.setFont(new Font("Serif", Font.PLAIN, 25));
    frame.getContentPane().add(label, BorderLayout.CENTER);
    frame.setLocationRelativeTo(null);
    frame.setUndecorated(true);
    frame.pack();
    frame.setAlwaysOnTop(true);
    frame.setVisible(true);

    new Thread(new Runnable() {
        @Override
        public void run() {
        try{            
            longTime();  //HERE IS THE FUNCTION THAT TAKES A LONG TIME  
        }catch(Exception e){   }
            frame.dispose();     //AFTER THE LONG FUNCTION FINISHES, DISPOSE JFRAME     
        } 
        }).start();

您可能希望从新生成的线程更新数据模型。那将是使用 SwingUtilities.invokeLater() 的正确位置。不要在这个新线程中更新模型。UI 组件的模型只能在 UI 线程中更新。稍后调用正是这样做的。

于 2013-02-11T08:45:49.847 回答
1

只需调用longTime()一个新线程,例如

new Thread(){ public void run() {longTime();}}.start();
于 2013-02-11T08:47:12.530 回答