我收到错误
URI方案不是“文件”
在我运行我想要创建的插件之后。从以下方法抛出错误:
protected File getFile(String fileName) throws URISyntaxException {
System.out.println(fileName);
URI binUri = EpsilonStandaloneExample.class.getResource(fileName).toURI();
URI uri = null;
System.out.println(uri);
if (binUri.toString().indexOf("bin") > -1) {
uri = new URI(binUri.toString().replaceAll("bin", "src"));
}
else {
uri = binUri;
}
System.out.println(uri);
return new File(uri);
}
当我将我的类作为java应用程序运行时,一切正常,我正在找到正确的路径:
file:/E:/epsilon-eclipse/workspace/Test2/src/org/eclipse/epsilon/examples/standalone/egl/oxfordDriver.egl
现在我正在实现一个插件并运行此代码,返回的URI是:
bundleresource://652.fwk1463565218/org/eclipse/epsilon/examples/standalone/egl/oxfordDriver.egl
此URI不正确,这就是抛出错误的原因。
有关如何解决此问题的任何建议?
答案 0 :(得分:0)
我假设您要加载一个文件,该文件是插件中资源的一部分。使用文件路径是不可能的,因为插件中的所有资源都是使用捆绑包相对URL解析的(并且捆绑包本身可能部署为jar文件,因此甚至没有普通文件)。看看reading resources from a plugin。
还要确保add those files to your build.properties(请参阅“二进制构建”一节)。在插件项目中放置文件是不够的。