How do I determine which methods are used by a Java class

Posted by Paul Butcher on Stack Overflow See other posts from Stack Overflow or by Paul Butcher
Published on 2010-05-13T22:19:58Z Indexed on 2010/05/13 22:24 UTC
Read the original article Hit count: 231

Filed under:
|
|

I need to provide a report of which APIs are used by our code. For a Windows DLL, I would use "dumpbin /imports" - is there an equivalent for a Java .class file?

javap seems to be the obvious place to look, but I can't find any options that seem to do what I'm after.

Thanks!

© Stack Overflow or respective owner

Related posts about java

Related posts about class