本文介绍了如何获取Eclipse Workspace位置URI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用一个插件,它将当前工作区的位置URI传递给其他方法。 IWorkspace workspace = ResourcesPlugin.getWorkspace();
我非常新的Eclipse PDE。什么方法返回工作区的URI位置。对于Ex,如果工作区是C:\Eclipse\Workspace。我需要路径C:\Eclipse\Workspace
解决方案
你想要:
ResourcesPlugin.getWorkspace()。getRoot()。getLocation()。toString();
I am working on a plugin, which passes the location URI of current workspace to other method.
IWorkspace workspace = ResourcesPlugin.getWorkspace();
I am very new to Eclipse PDE. What method returns the URI location of workspace. for Ex if the workspace is C:\Eclipse\Workspace. i need the path C:\Eclipse\Workspace
解决方案
You want:
ResourcesPlugin.getWorkspace().getRoot().getLocation().toString();
这篇关于如何获取Eclipse Workspace位置URI的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!