Kinda like in the format of a class-dump result but in Java, I already have the Android.jar file and I would like to dump a clean listing of classes and methods for each .class file. How do I do this?
p.s. HTML documents seem too messy and hard to parse.
Kinda like in the format of a class-dump result but in Java, I already
Share
unzip -l Android.jarshould do the trick.Another alternative:
jar -t Android.jarTo list classes and methods:
Unzip the .jar-file, loop through the files and use the
javapcommand: