JDialog没有出现

Ser*_*X44 2 java swing awt jdialog java-8

该程序大多数工作正常,但不打开任何窗口.它应该在桌面右下方显示一个小对话框.但是对于另一个人来说,编译相同的代码没有问题.我们有相同的Java运行时(1.8_u40).我怎样才能解决这个问题?

我把代码放在下面:

import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.RoundRectangle2D;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JProgressBar;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class ProgressDialog {
    private JDialog dialogFrame;
    private JProgressBar progressBar;
    private JLabel headingLabel;
    private Uploader callerUploader;

    public ProgressDialog() {

        dialogFrame = new JDialog();
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException
                | UnsupportedLookAndFeelException ex) {
            System.err.println(ex.toString());
        }

        dialogFrame.setSize(200, 50);
        dialogFrame.setLayout(new GridBagLayout());

        GridBagConstraints constraints = new GridBagConstraints();

        constraints.gridx = 0;
        constraints.gridy = 0;
        constraints.weightx = 1.0;
        constraints.weighty = 1.0;
        constraints.insets = new Insets(5, 5, 5, 5);

        headingLabel = new JLabel();
        Font f = headingLabel.getFont();
        f = new Font(f.getFontName(), Font.BOLD, f.getSize());
        headingLabel.setFont(f);
        headingLabel.setOpaque(false);
        dialogFrame.add(headingLabel, constraints);
        dialogFrame.setUndecorated(true);

        // Bottone
        constraints.gridx = 1;
        constraints.gridy = 0;
        constraints.weightx = 0;
        constraints.weighty = 0;

        JButton xButton = new JButton("X");
        xButton.setMargin(new Insets(1, 4, 1, 4));
        xButton.setFocusable(false);
        dialogFrame.add(xButton, constraints);

        // Progress bar
        constraints.gridx = 0;
        constraints.gridy = 1;
        constraints.weightx = 1.0;
        constraints.weighty = 1.0;
        constraints.gridwidth = 2;

        progressBar = new JProgressBar();
        progressBar.setMaximum(100);
        progressBar.setMinimum(0);
        Dimension dim = new Dimension();
        dim.width = 130;
        dim.height = 20;
        progressBar.setMinimumSize(dim);
        progressBar.setStringPainted(true);
        progressBar.setBorderPainted(true);
        dialogFrame.add(progressBar, constraints);

        xButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                dialogFrame.dispose();
                stoppedUploaderClose();
            }
        });
    }

    private void autoPosition() {
        // Per il posizionamento in basso a destra
        Dimension scrSize = Toolkit.getDefaultToolkit().getScreenSize();
        // altezza taskbar
        Insets toolHeight = Toolkit.getDefaultToolkit().getScreenInsets(dialogFrame.getGraphicsConfiguration());
        dialogFrame.setLocation(scrSize.width - 5 - dialogFrame.getWidth(), scrSize.height - 5 - toolHeight.bottom
                - dialogFrame.getHeight());
    }

    public void destroy() {
        new Thread() {
            @Override
            public void run() {
                try {
                    Thread.sleep(500);
                    for (float i = 1.00f; i >= 0; i -= 0.01f) {
                        dialogFrame.setOpacity(i);
                        Thread.sleep(15);
                    }
                    dialogFrame.dispose();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            };
        }.start();

    }

    public void setUploader(Uploader callerUploader) {
        this.callerUploader = callerUploader;
    }

    public void set(int n) {
        progressBar.setValue(n);
        progressBar.setString(n + "");
    }

    public void setMessage(String headingLabel) {
        this.headingLabel.setText(headingLabel);
        autoPosition();
        dialogFrame.setShape(new RoundRectangle2D.Double(1, 1, 200, 50, 20, 20));
        dialogFrame.setVisible(true);
    }

    public void setWait() {
        headingLabel.setText("Waiting link...");
    }

    public void close() {
        dialogFrame.dispose();
    }

    public void stoppedUploaderClose() {
        try {
            callerUploader.stopUpload();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
Run Code Online (Sandbox Code Playgroud)

Hov*_*els 6

您正在进行Swing调用,从后台线程中更改GUI的Swing组件的状态,这会导致不可预测的错误.最好使用Swing Timer,而不是Thread.sleep(...)因为在Swing事件线程上调用Timer的ActionListener中的所有代码.

另外,我不得不怀疑

  1. 正如Uploader类所做的那样,...可能它创建了长时间运行的代码,这引出了一个问题,它是否在后台线程中被适当调用?这看起来是SwingWorker的好地方.
  2. 如何调用此对话框代码?

要获得更直接的帮助,请考虑创建和发布sscce最小示例程序/ mcve,其中您将代码压缩到仍然编译和运行的最小位,没有外部依赖(例如需要链接到数据库或图像),没有与您的问题无关的额外代码,但仍然可以证明您的问题.

编辑:好的,我通常不会这样做,但是我在你的GitHub项目链接中查看了你的代码,正如我所怀疑的,Uploader 在Swing事件线程执行长时间运行的代码,并调用这个类你已经张贴在上面.我建议您使用SwingWorker来执行长时间运行的代码,使用它的setProgress(...)方法将进度状态从0更改为100,并使用PropertyChangeListener监听此状态的更改,然后基于此设置JProgressBar的值这个.这需要你做很多工作,但是非常值得.有关详细信息,请参阅:课程:Swing中的并发

我有一些示例SwingWorker程序,您可以在这里找到:

  • 要获得更直接的帮助,请考虑创建并发布[sscce](http://sscce.org)或[最小示例程序/ mcve](http://stackoverflow.com/help/mcve),将代码压缩到仍然编译和运行的最小位,没有外部依赖(例如需要链接到数据库或图像),没有与您的问题无关的额外代码,但仍然表明您的问题.我们不希望您的整个程序,只是一个能够证明问题的程序 - 为我们的志愿者提供的代码更少. (2认同)
  • @ SergiX44:永远不应该有`new Thread(...).run()`存在.但是你的代码**应该具有`new Thread(...).start()`present或者更好的`new MySwingWorker.execute()`来运行你在Swing事件线程中长时间运行的进程,但你的代码没有. (2认同)