Possible Duplicate:
How to run a JAR file
hi
how or with what to run *.jar file ?
can i get any tool for this (free if there is....)
thank's in advance
Possible Duplicate:
How to run a JAR file
hi
how or with what to run *.jar file ?
can i get any tool for this (free if there is....)
thank's in advance
You should just be able to run it like so:
java -jar <jar file>
This assumes that java
is in your path and that the jar file is in the current directory. Otherwise you will have to fully specify the paths.
JAR files are Java ARchives. Run them as follows:
java -jar jarfile
You can download Java from here (it is a free download):