我的eclipse插件中有以下目录结构:
> samplePlugin
> src
> icons
> resources
> db.xml
名为"资源的文件夹"是在samplePlugin项目中手动创建的。当我将插件导出为jar文件并将其放在eclipse根目录的plugins文件夹中并在我的eclipse中运行插件时,我无法读取db.xml文件。请参阅以下代码。
File file = new File("resources/db.xml"); //this line throws file not found exception error
if(!file.exists())
{
file.createNewFile();
}
如何在将我的插件导出为jar并在eclipse中运行后读取xml文件。我尝试使用Bundle和URL,但它没有成功。