1

我正处于代码/应用程序的中间,并且已经到了公开发布它的地步。我想知道如何为应用程序“设置”ICON 图像的简单示例代码。只是一个简单的代码,我可以放置在我的类的顶部,它将从其目录中获取图标图像 [/res/Icon.png]

谢谢 <3

4

1 回答 1

3

您可以使用Frame#setIconImage(Image)或者如果您想要更灵活的东西,Window#setIconImages(List)

正如所证明的

请感谢这些作者

用简单的例子更新

加载图像的本质可能会引发问题。您需要为它可能失败的事实做好准备。希望您已将应用程序准备得足够好,以至于在正常操作下,这种情况很少见

import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.Image;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class FrameIconTest {

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

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

                JFrame frame = new JFrame("Testing");

                try {
                    List<Image> icons = new ArrayList<Image>(5);
                    icons.add(ImageIO.read(getClass().getResource("/resources/FrameIcon16x16.png")));
                    icons.add(ImageIO.read(getClass().getResource("/resources/FrameIcon24x24.png")));
                    icons.add(ImageIO.read(getClass().getResource("/resources/FrameIcon32x32.png")));
                    icons.add(ImageIO.read(getClass().getResource("/resources/FrameIcon64x64.png")));
                    icons.add(ImageIO.read(getClass().getResource("/resources/FrameIcon128x128.png")));
                    frame.setIconImages(icons);
                } catch (IOException exp) {
                    exp.printStackTrace();
                    // Log the problem through your applications logger...
                }

                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new JLabel("Frame with icon"));
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

}
于 2013-11-07T00:06:40.937 回答