i want to call the java class in batch file. how can i call. can tell me any commands which call the class file
Thanks Krishna
|
i want to call the java class in batch file. how can i call. can tell me any commands which call the class file Thanks Krishna |
|||
|
|
|
If you have compiled your
where |
|||
|
|
if you are having a class Myclass with package name com.mycomp.util then you have to go to the parent dir of "com" for example "c:\src" is the folder that contains com package then your command should be in the batch file cd c:\src java -cp jar1;jar2; com.mycomp.util.Myclass now call the batch file. |
|||
|
|
|
Just use this in ur .bat file |
|||
|
|