java - How to view all contents of all jars in a given directory? -
maybe i'm having brain dead day but, what easiest/best way contents of jars in given directory?
i'm running classpath/loader conflict want way list of entire contents of jars find problem. know there tools but, life of me, can't think of of them.
any thoughts?
edit:
reference, here's i've been doing (this broken readability on 1 line shell script):
outfile=/tmp/allclasses.txt ; touch $outfile; file in *.jar; echo " === $file " >> $outfile; jar -tf $file >> $outfile; done;
this seems work pretty feels clunky.
for reference, here's i've been doing: touch /tmp/allclasses.txt ; file in *.jar ; echo " === $file " >> /tmp/allclasses.txt ; jar -tf $file >> /tmp/allclasses.txt ; done;
this seems work pretty feels clunky.
open jar-file archive winrar or 7zip
Comments
Post a Comment