I m running a java program from a batch file which refences some external jar files .How do i include those jar files in my batch file.Please help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Look at the Sun's official documentation: Setting the class path to understand your options. A quick way would be just to include your JAR(s) after the on Windows
on Linux/Unix
|
|||
|
|
|
You have to fill the Class-Path parameter of the manifest file of the JAR. The standard documentation explains that very well. |
|||
|
|
|
Not to bother with -classpath parameter you could put references to the jar files into the manifest.mf of your application JAR, if it's you application of course. |
|||
|
|
|
When running a jar or class file specify classpath option |
|||||||
|
|
You need to set classpath http://download.oracle.com/javase/1.3/docs/tooldocs/win32/classpath.html. E.g.,
or if your jar-files are located in directory
|
||||
|
|