[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Analyzing .jar file



Hello,
Given a XXX.jar file I need to analyze (perform transformations on) all classes it contains.
One way would be to unjar the .jar file and give as an input to Soot all classes that it contains (if
the .jar file contains many class files it wouldn't be easy).
The second solution would be to find the "main" class in the .jar file and
use the --app option (the problem with that solution is that I may analyze more class files that
I have expected to analyze (for example if one of the classes in the .jar uses Soot I will analyze
all Soot files !)).
If anyone knows a better solution, please let me know,
Alex.