Originally Posted by rummy
|
Hello everybody,
I have been trying to run a stand alone java application from commannd prompt. But it reports error since certain jars which are required by the program were not resolved by the compiler.So, kindly let me know where exactly the jar files should be placed.
|
You can store them anywhere you want as long as you mention them (with a full path name) in your classpath list. There is one exception: if you store them in your lib/ext sub directory of your JRE installation directory you don't have to metion them any further, i.e. that directory is checked for .jar files and .class files when it starts up (but better not to store anything there without exactly knowing what you're doing).
kind regards,
Jos