How to run a local jar file from a java program?
The jar file is not in the class-path of the Java caller programm.
|
How to run a local jar file from a java program? The jar file is not in the class-path of the Java caller programm. |
||||
|
|
|
I suggest you use a Here is something to get you started:
|
|||||||||||||
|
|
Another way to do on windows is:
this way you can set priority of your process as well (normal/low/etc) |
|||
|
|
|
First, the description of your problem is a bit unclear. I don't understand if you want to load the classes from the jar file to use in your application or the jar contains a main file you want to run. I will assume it is the second. If so, you have a lot of options here. The simplest one would be the following:
Voila... If you don't need to run the jar file but rather load the classes out of it, let me know. |
|||
|
|
Could something like the following be useful? http://download.oracle.com/javase/tutorial/deployment/jar/jarclassloader.html |
|||
|
|
|
1) Set the class path from environment variables 2) Go to the folder where your jar file exists 3) Run the following commands through command prompt java -jar jarfilename |
|||
|