Results 1 to 2 of 2
How to create an application from a package containing a jar, and some library..and some other directory.....In windows i can create a batch file with the command line command...how can ...
- 11-02-2007 #1Just Joined!
- Join Date
- Nov 2007
- Posts
- 7
Installer
How to create an application from a package containing a jar, and some library..and some other directory.....In windows i can create a batch file with the command line command...how can I create such executable file
- 11-02-2007 #2
Hello - jar is Java's archiving tool. You need to ensure you have Java installed with java -version .
Then cd to the directory containing the archived file and do:
jar xf myFile.jar
You should then be able to use Java to execute the programe.
Hope that helps.I am always doing that which I can not do, in order that I may learn how to do it. - Pablo Picasso


Reply With Quote
