我的项目构建文件夹具有以下结构:
build
|-classes
|package
|-HelloWorld.class
|-resources
|-images
|-image.png
HelloWorld 类中有 ImageIcon 对象,其声明应如下所示:
ImageIcon icon = new ImageIcon(HelloWorld.class.getResource("../../resources/images/picture.png"));
但它抛出NullPointerException
了getResource()
方法。我在哪里做错了?