如何在eclipse插件中获取项目的输出类路径

时间:2009-06-23 11:41:16

标签: eclipse plugins

我想获取输出文件夹的绝对路径。它可能是指向工作区外的文件夹的链接。

1 个答案:

答案 0 :(得分:3)

如果要以编程方式获取项目输出的系统路径(对于eclipse插件),可以使用IJavaProject

IPath path = project.getOutputLocation();
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IFolder folder = root.getFolder(path);
return folder.getLocation();

另外detailed here

ResourcesPlugin.getWorkspace().getRoot().findMember(javaProject.getOutputLocation()).getLocation();