JProgressBar in new thread JDialog

前端 未结 2 1674
一生所求
一生所求 2021-01-25 02:06

I would like to make JProgressBar in new JDialog, witch will be in separate thread from main logic. So I can start indeterminate progress with just creating new JDialog and comp

相关标签:
2条回答
  • 2021-01-25 02:25

    Show the progress bar in the main thread (where all your swing stuff is going on), and do the intensive background work on a separate thread.

    The UI will be responsive all the time (since you don't block the main thread), and you can notify it when you long-running task is done.

    0 讨论(0)
  • 2021-01-25 02:33

    But it gives me hard time to achieve that because after JDialog appears it doesn't show any components (including JProgressBar) until the logic in main thread (SwingUtilities) is done.

    you have issue with Concurrency in Swing, Swing is single threaded and all updates must be done on EventDispatchThread, there are two ways

    • easies to use Runnable#Thread, but output to the Swing GUI must be wrapped into invokeLater

    • use SwingWorker, example about SwingWorker is in the Oracles JProgressBar and SwingWorker tutorial

    EDIT

    this code simulate violating EDT and correct workaround for SwingWorker too

    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.Window;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    
    import javax.swing.*;
    
    public class TestProgressBar {
    
        private static void createAndShowUI() {
            JFrame frame = new JFrame("TestProgressBar");
            frame.getContentPane().add(new TestPBGui().getMainPanel());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        }
    
        public static void main(String[] args) {
            java.awt.EventQueue.invokeLater(new Runnable() {
    
                @Override
                public void run() {
                    createAndShowUI();
                }
            });
        }
    
        private TestProgressBar() {
        }
    }
    
    class TestPBGui {
    
        private JPanel mainPanel = new JPanel();
    
        public TestPBGui() {
            JButton yourAttempt = new JButton("Your attempt to show Progress Bar");
            JButton myAttempt = new JButton("My attempt to show Progress Bar");
            yourAttempt.addActionListener(new ActionListener() {
    
                @Override
                public void actionPerformed(ActionEvent e) {
                    yourAttemptActionPerformed();
                }
            });
            myAttempt.addActionListener(new ActionListener() {
    
                @Override
                public void actionPerformed(ActionEvent e) {
                    myAttemptActionPerformed();
                }
            });
            mainPanel.add(yourAttempt);
            mainPanel.add(myAttempt);
        }
    
        private void yourAttemptActionPerformed() {
            Window thisWin = SwingUtilities.getWindowAncestor(mainPanel);
            JDialog progressDialog = new JDialog(thisWin, "Uploading...");
            JPanel contentPane = new JPanel();
            contentPane.setPreferredSize(new Dimension(300, 100));
            JProgressBar bar = new JProgressBar(0, 100);
            bar.setIndeterminate(true);
            contentPane.add(bar);
            progressDialog.setContentPane(contentPane);
            progressDialog.pack();
            progressDialog.setLocationRelativeTo(null);
            Task task = new Task("Your attempt");
            task.execute();
            progressDialog.setVisible(true);
            while (!task.isDone()) {
            }
            progressDialog.dispose();
        }
    
        private void myAttemptActionPerformed() {
            Window thisWin = SwingUtilities.getWindowAncestor(mainPanel);
            final JDialog progressDialog = new JDialog(thisWin, "Uploading...");
            JPanel contentPane = new JPanel();
            contentPane.setPreferredSize(new Dimension(300, 100));
            final JProgressBar bar = new JProgressBar(0, 100);
            bar.setIndeterminate(true);
            contentPane.add(bar);
            progressDialog.setContentPane(contentPane);
            progressDialog.pack();
            progressDialog.setLocationRelativeTo(null);
            final Task task = new Task("My attempt");
            task.addPropertyChangeListener(new PropertyChangeListener() {
    
                @Override
                public void propertyChange(PropertyChangeEvent evt) {
                    if (evt.getPropertyName().equalsIgnoreCase("progress")) {
                        int progress = task.getProgress();
                        if (progress == 0) {
                            bar.setIndeterminate(true);
                        } else {
                            bar.setIndeterminate(false);
                            bar.setValue(progress);
                            progressDialog.dispose();
                        }
                    }
                }
            });
            task.execute();
            progressDialog.setVisible(true);
        }
    
        public JPanel getMainPanel() {
            return mainPanel;
        }
    }
    
    class Task extends SwingWorker<Void, Void> {
    
        private static final long SLEEP_TIME = 4000;
        private String text;
    
        public Task(String text) {
            this.text = text;
        }
    
        @Override
        public Void doInBackground() {
            setProgress(0);
            try {
                Thread.sleep(SLEEP_TIME);// imitate a long-running task
            } catch (InterruptedException e) {
            }
            setProgress(100);
            return null;
        }
    
        @Override
        public void done() {
            System.out.println(text + " is done");
            Toolkit.getDefaultToolkit().beep();
        }
    }
    
    0 讨论(0)
提交回复
热议问题