I have a jar file containing so many *.class files. I need to SEARCH one method (i just have the method name alone with me now) in which class file.
Is it possible ?
Extract the class from jar file and then run
unzip Classes.jar find . -name '*.class' | xargs javap -p > classes.txt
The classes.txt file will have all information about the classes inside jar. You can search it for a method.
classes.txt