Is there any way i can get the list of called methods in a class in java?
Possible Duplicate:
Get current stack trace in Java
这是事情,我想得到一个java类中所有被调用方法的列表。 到目前为止,我一直在使用eclemma,但这还不够。 我也想要调用方法的顺序。
-
你的意思是你需要调用堆栈? 如果是,请使用Thread.currentThread()。getStackTrace()
-
非常感谢这就是我想要的!
您可以在调用时记录每个方法(如果您愿意,可以使用其参数)。 您可以为每个方法添加一行或使用AOP为您执行此操作。