Best Method for Jar Extraction in Unix/Linux?

Viewed 79153

How do you extract the contents of a JAR file in (Ubuntu) Linux?

5 Answers

Fun fact: A .jar file is actually just a .zip file

unzip file.jar

or if you have jdk installed:

jar xf file.jar
Related