如何使用java从包中加载图像图标

时间:2017-03-19 19:30:32

标签: java swing package embedded-resource imageicon

我想使用代码

URL iconURL = getClass().getResource("/some/package/favicon.png");
// iconURL is null when not found
ImageIcon icon = new ImageIcon(iconURL);
frame.setIconImage(icon.getImage());

从包中加载图片并设置为我JFrame的图标。

图片位于包com.app.image中,名称为logo.png

构建网址时:

URL iconURL = getClass().getResource("/com/app/image/logo.png");

我在null收到iconURL。哪里有问题?

0 个答案:

没有答案