We appreciate your reply
Java editor source codes : compilation of java program through another java program
by pavan (2004-03-25 05:42:16)
How to compile a java program by running another java program ?
Can I run batch file from java program ?
O.S


Please give the answers
Java
by pajmal (2008-09-08 12:18:55)
How to compile a java program by running another java program
Running java program through another java program
by ajumalp (2008-10-25 05:42:48)
First write the code to a bat file and then run it.

public void go() {
try{
p = r.exec("cmd /c start JGuider.bat");
p.waitFor();
} catch(Exception e){}