i launch a batch file from my java code using
Runtime.getRuntime().exec("cmd /c start myFile.bat");
which in turn launches an application, now i want to stop the application been launched by this batch file, how to achieve it. there may be the case that the same multiple instance of same application are already running, but i want to stop the one being launched by this batch file. is it possible, my server is on windows.
since this was game application and need the enviroment also tried
Runtime rt = Runtime.getRuntime() ;
Process p = rt.exec("C:/Valve/HLServer/hlds.exe +maxplayers 32 -game cstrike -console +port 27015 -nojoy -noipx -heapsize 250000 +map cs_italy +servercfgfile server.cfg +lservercfgfile +mapcyclefile mapcycle.txt +motdfile motd.txt +logsdir logs -zone 2048",null, new File("C:/Valve/HLServer")) ;
but still no luck :(