我有一个代码示例,它浏览我的工作区并选择每个类中的每个方法。 我的目的是打印出方法的绝对路径,但我不知道该怎么做。
method.getAbsolutePath()
之类的东西不存在。
我的代码:
IPackageFragment[] packages = javaProject.getPackageFragments();
for (IPackageFragment mypackage : packages) {
for (ICompilationUnit unit : mypackage.getCompilationUnits()) {
IType[] allTypes = unit.getAllTypes();
for (IType type : allTypes) {
IMethod[] methods = type.getMethods();
for (IMethod method : methods) {
//System.out.println(MyMethodPath);
//here is want to print the path
}
}
}
}
有人可以帮忙吗?
答案 0 :(得分:2)
您可以使用IMethod.getClassFile获取该类,然后可以使用IClassFile.getPath获取绝对路径,或更多信息:
System.out.println(method.getClassFile().getPath().toString());
答案 1 :(得分:1)
我认为这是你需要的,不要评论我:
System.getProperty ("user.dir");