在我的 Eclipse 插件中, 我需要使用软件包探索器的文件 。 我点击右鼠标按钮的文件, 并选择“ 查看 ” (我的插件名称 ) 。 因此, 我如何在我的插件工程中达到此文件路径?
http://i49.tinypic.com/2j29ifs.png
我有这个:
public class ViewHandler extends AbstractHandler {
...
public Object execute(ExecutionEvent event) throws ExecutionException {
...
...
URI uri = null;
try {
test();
uri = URI.createURI("../models/task.cm");
Resource resource = resourceSet
.getResource(uri, true);
Model model = (Model) resource.getContents().get(0);
ModelExtractor showModel = new ModelExtractor(model);
showModel.run();
} catch (Exception e) {
System.out.print(e);
}
return null;
}
}
And I need to replace this line:
uri = URI.createURI("../models/task.cm");
相对文件路径。
或者如果你有一些好塔托。