11

为挥杆动作设置图像:

Action action = ...
// ImageIcon icon = new ImageIcon(getClass().getResource("/icon.ico"));
ImageIcon icon = new ImageIcon(getClass().getResource("/icon_16x16.png"));
action.putValue(Action.SMALL_ICON, icon);

*.ico文件不会被渲染,只有 png/jpg。
这是设计使然吗?

4

2 回答 2

12

支持的类型可能会因制造商和版本而异,但您通常可以依靠 PNG、JPG 和 GIF。

import javax.imageio.ImageIO;

public class QuickTest {

    public static void main(String[] args) throws Exception {
        String[] types = ImageIO.getReaderFileSuffixes();
        System.out.println("This JRE supports image types:");
        for (String type : types) {
            System.out.println("Type: " + type);
        }
    }
}

在这里/现在输出

This JRE supports image types:
Type: bmp
Type: jpg
Type: wbmp
Type: jpeg
Type: png
Type: gif
于 2012-08-29T23:44:39.683 回答
8

在本地,没有。

但是,您可能想看看image4j,它为他们提供(恕我直言)出色的支持

于 2012-08-29T20:16:27.563 回答