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
You need to set classpath http://download.oracle.com/javase/1.3/docs/tooldocs/win32/classpath.html. E.g.,
java -cp file1.jar;file2.jar yourApp
or if your jar-files are located in directory lib/
lib/
java -cp lib/* yourApp