JAR files
807605Jun 15 2007 — edited Aug 8 2007I read the tutorials on extracting Jar files but I am finding difficulties performing the actual extraction.
This is what I did:
I open command prompt and open the directory where the jar is located. Then I type:
jar xf MyClass.jar
This didn't work so then I tried
java jar xf MyClass.jar
That also didn't work so I tried
java -jar xf MyClass.jar
And that also didn't work.
Can anyone see the problem?
Thank you.