这个问题在这个网站上已经被问了 100 次,但我已经查看了所有这些问题,即使它们都已解决,但没有一个解决方案对我有用。
这是我的代码的样子:
public Button1(Client client, String imgName) {
this.client = client;
try {
this.icon = ImageIO.read(this.getClass().getResourceAsStream("/resources/" + imgName));
} catch (IOException e) {
e.printStackTrace();
}
当代码运行时,它会导致以下错误:
Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(Unknown Source)
字符串 imgName 从子类传递给构造函数,是图像的名称(例如 image.png)。我还确保我的资源文件夹位于项目文件夹的根目录中,并作为源文件夹包含在 eclipse 项目中。我还确保System.getProperty("user.dir")
指向正确的位置。我也尝试过使用 getResource() 而不是 getResourceAsStream(),但它仍然不起作用。