是否有可能在特定方法中找到方法调用列表?

时间:2014-02-11 09:32:49

标签: java reflection

我想列出特定方法中的所有方法调用。例如

public void testRunJob() throws IOException{    
        String response = JenkinsJob.runJobRemote("somevalue","somevalue");
        assertEquals("Created",response);           
}

是否可以列出runJobRemote()是方法testRunJob()中使用的方法?反射API可以帮助解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

您必须使用Instrumentation API来确定这些细节等等。

答案 1 :(得分:0)

Reflection API不提供此类信息。使用第三方libraries to analyze class files