1

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

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 中执行时会中断,或者我应该如何正确执行此操作?

4

1 回答 1

2

假设图标目录在项目的根目录,我相信你可以在路径的前面添加一个斜杠:

Path path = new Path("/icons/doodledebug-icon.png");
于 2012-08-24T16:45:03.980 回答