我的插件项目中有以下代码
Class.getResourceAsStream("/file.png");
我的文件放在src / main / resources中。
当我从eclipse运行配置对话框运行我的插件应用程序时,一切都很好。 但是,当我在eclipse的独立实例上安装mentonied插件时,会有空指针异常。
我已按以下方式将我的资源文件夹添加到jar中。
source.. = src/main/java/
output.. = bin/
bin.includes = META-INF/,\
.,\
target/dependency/jfxrt-8.0.jar,\
src/main/resources/
target/dependency/jfxrt-8.0.jar
但是,同时存在问题。
我错在哪里以及如何解决我的问题?
此致 弗拉基米尔