1

我可以使用以下代码获取一组 ICompilationUnit,但我需要从 ICompilationUnit 或 IWorkspaceRoot 获取物理文件路径。

我怎样才能做到这一点?

private static Set<ICompilationUnit> getFiles(String projname)   
throws CoreException {
    IWorkspaceRoot ws = ResourcesPlugin.getWorkspace().getRoot();
    IProject proj = ws.getProject(projname);
    IJavaProject javaProject = JavaCore.create(proj);
    Set<ICompilationUnit> files = new HashSet<ICompilationUnit>();
    javaProject.open(new NullProgressMonitor());
    for (IPackageFragment packFrag : javaProject.getPackageFragments()) {
        for (ICompilationUnit icu : packFrag.getCompilationUnits()) {
            files.add(icu);
        }
    }
    javaProject.close();
    return files;
}
4

1 回答 1

4

向 ICompilationUnit 发送 getUnderlyingResource() 方法。它返回一个 IResource,它可以告诉您它是否是一个文件,如果是,它的文件名和路径的各种形式是什么。

请注意,也可以返回 null,因此请注意这一点。

像这样的东西:

   // resource is an IResource returned by sending 
   // an iCompilationUnit the getUnderlyingResource() method

if (resource.getType() == IResource.FILE) {

    IFile ifile = (IFile) resource;

    String path = ifile.getRawLocation().toString();

}
于 2012-10-26T17:08:22.530 回答