我想获取输出文件夹的绝对路径。它可能是指向工作区外的文件夹的链接。
答案 0 :(得分:3)
如果要以编程方式获取项目输出的系统路径(对于eclipse插件),可以使用IJavaProject
:
IPath path = project.getOutputLocation();
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IFolder folder = root.getFolder(path);
return folder.getLocation();
ResourcesPlugin.getWorkspace().getRoot().findMember(javaProject.getOutputLocation()).getLocation();