I want to compile and run a file which uses three jar files as resources
hello everyone
I seek help in a problem am having.
I have a package called Classes which has several classes. (ClassA.java, ClassB.java) and I have a lib folder containing three jar files which i need to compile my classes (A.jar, B.jar, C.jar).
Am trying to create two .bat (compile.bat, run.bat)files one to compile my classes and the other to run my application (main class is ClassA.java). I want the compiled classes to be in the same folder as the java files. My class hierarchy is like this
MyApp
|
|
|--compile.bat
|--run.bat
|--lib
||
||
||-A.jar
||-B.jar
||-c.jar
|
|-Classes
||-ClassA.java
||-ClassB.java
Can someone help me right the two .bat files, it will be greatly appreciated (this app runs on windows).

