我正在尝试制作一个罐子,但该程序需要图像。当我运行罐子时,图像没有出现。然而,他们在日食中做到了。我使用了这段代码:
label.setIcon(new ImageIcon("res/img/icon.png"));
然后我在网上寻找解决方法。我在 StackOverflow 上发现了这个问题,但是当我在我的代码中尝试它时,它抛出了一个NullPointerException
(也在 eclipse 中)。这是我现在的代码:
label.setIcon(new ImageIcon(getClass().getResource("/res/img/icon.png")));
图像位于包中的一个单独文件夹中,称为“res”: