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
To run batch files using java if that's you're talking about...
String path="cmd /c start d:\\sample\\sample.bat"; Runtime rn=Runtime.getRuntime(); Process pr=rn.exec(path);`
This should do it.