tags:

views:

73

answers:

3

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

+3  A: 

Use:

 java -jar <<jarfile>>
Aif
+3  A: 

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.

Daniel DiPaolo
+5  A: 

JAR files are Java ARchives. Run them as follows:

java -jar jarfile

You can download Java from here (it is a free download):

http://www.java.com/es/download/index.jsp

Grodriguez