Reputation: 107
I do have a .jar file and i need to view the content of the jar files.
Upvotes: 5
Views: 17682
Reputation: 658
The "official" utility is called "jar" and should be installed if a Java environment is installed. It is a command line utility that works similar to the UNIX tool "tar".
But as Mick Sear mentioned, "unzip" will also work.
Upvotes: 1
Reputation: 53
*.jar are archived files. Try extracting it with an Archiver!(similar to WinRAR on windows)
Upvotes: 1
Reputation: 14162
JAR files are packaged as zips, so any tools you use to open zip files should work.
Upvotes: 0