我可以使用以下代码获取一组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;
}
最佳答案
向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();
}