In my Java application, I want to run a batch file that calls \"scons -Q implicit-deps-changed build\\file_load_type export\\file_load_type\"
scons -Q implicit-deps-changed build\\file_load_type export\\file_load_type
It seems t
Process p = Runtime.getRuntime().exec( new String[]{"cmd", "/C", "orgreg.bat"}, null, new File("D://TEST//home//libs//"));
tested with jdk1.5 and jdk1.6
This was working fine for me, hope it helps others too. to get this i have struggled more days. :(