java中的setIconImage不起作用

时间:2016-08-02 11:40:19

标签: java

我试图让我的setIconImage()来获取工作,但伤心地说,我没能找到工作,所以现在我需要你们的帮助和你们一样...

这是我的代码

form.setIconImage(new ImageIcon(getClass().getResource("inventory/images/image-background-5.jpg")).getImage());

这是我的图片路径

enter image description here

但我不知道我遇到此错误的原因是什么

enter image description here

1 个答案:

答案 0 :(得分:0)

您有一个NullPointerException,这是因为您尝试调用getImage()对象的null。自null返回getResource("inventory/images/image-background-5.jpg")以来,您有null个对象。正如评论部分所述,您需要在路径的开头使用/。