我可以使用以下代码获取一组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;
}
答案 0 :(得分: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();
}