Dear Friends,
Last Few Days I am facing a small problem. Its related to threads.
I am creating a
thread, in its run() method i am calling a batch file by using the following command,
Process p = Runtime.getRuntime().exec("MySample1.bat");
Now, the problem is, i want to run few more batches(say MySample2.bat, MySample3.bat..) in loop. Before that i want to make sure that the batches run one afer another....
Any kind of suggessions are welcome...