eclipse插件里面的图像路径

时间:2012-08-24 16:40:21

标签: java jar eclipse-plugin filepath

我试图通过以下方式引用eclipse插件中的图像(例如图标)(来自eclipse FAQ网站上的教程):

Bundle bundle = Platform.getBundle(PLUGIN_ID);
Path path = new Path("icons/doodledebug-icon.png");
URL fileURL = FileLocator.find(bundle, path, null);
URL resolved = null;
try {
    resolved = FileLocator.resolve(fileURL);
} catch (IOException e) {
    throw new RuntimeException(e);
}
ImageDescriptor imageDescriptor = ImageDescriptor.createFromURL(resolved);

这在测试时工作正常,即在运行时eclipse应用程序中。但是在创建更新站点并使用此站点时会导致错误。路径似乎在语法上不正确:

C:\Program Files\eclipse EE indigo\file:\C:\Users\Me\.eclipse\org.eclipse.platform_3.7.0_1202875443\plugins\DoodleDebugServer-Plugin_1.0.0.201208241809.jar!\icons\doodledebug-icon.png

为什么在jar中执行时会出现这种情况,或者我应该如何正确执行此操作?

1 个答案:

答案 0 :(得分:2)

假设图标目录位于项目的根级别,我相信您只需在路径的前面添加斜杠:

Path path = new Path("/icons/doodledebug-icon.png");