1

我尝试创建一个包含加载程序 gif 图像和一些文本的浮动对话框。我有以下课程:

public class InfoDialog extends JDialog {
    public InfoDialog() {
        setSize(200, 50);
        setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
        setUndecorated(true);
        setLocationRelativeTo(null);

        URL url = InfoDialog.class.getClassLoader().getResource("loader.gif");
        ImageIcon loading = new ImageIcon(url);
        getContentPane().add(new JLabel("Logging in ... ", loading, JLabel.CENTER));
    }
}

但是,当我打电话时:

   InfoDialog infoDialog = new InfoDialog()
   infoDialog.setVisible(true);

显示一个空对话框。ImageIcon 和 Label 未显示在对话框中。

我在这段代码中做错了什么?

非常感谢。

4

2 回答 2

4

图像通常放置在“资源”源文件夹中,

在此处输入图像描述
然后作为字节流访问,

package com.foo;

import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;

public class Demo 
{
    private static final String IMAGE_URL = "/resource/bar.png";

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

    private static void createAndShowGUI()
    {
        SwingUtilities.invokeLater(new Runnable()
        {
            @Override
            public void run() 
            {
                try
                {
                    JDialog dialog = new JDialog();     
                    dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
                    dialog.setTitle("Image Loading Demo");

                    dialog.add(new JLabel(new ImageIcon(ImageIO.read(getClass().getResourceAsStream(IMAGE_URL)))));

                    dialog.pack();
                    dialog.setLocationByPlatform(true);
                    dialog.setVisible(true);
                } 
                catch (IOException e) 
                {
                    e.printStackTrace();
                }
            }
        });
    }
}

生产摩根弗里曼。

在此处输入图像描述

于 2013-02-10T19:01:48.797 回答
0

我将添加ImageIcon到 aJLabel然后添加JLabelJDialogcontentPane 后跟 a this.validateandthis.repaint在构造函数中。

要调试,有时您需要实际代码,没有这些代码只是基于假设的建议

于 2013-02-10T19:01:47.263 回答