Howto List Contents of a Jar File
Published on November 19, 2008
By Pete Freitag
By Pete Freitag
Ever wanted a list of files inside a jar file. It's pretty simple to do using the jar
command:
jar -tf somefile.jar
You could also use this technique to list the contents of a zip file, since jar files are actually zip files.
Howto List Contents of a Jar File was first published on November 19, 2008.