How do I determine which methods are used by a Java class
- by Paul Butcher
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!