我想使用代码
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
。哪里有问题?