Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :(

share|improve this question
what have you done in myFile.bat? – Nirmal- thInk beYond Apr 14 '11 at 4:10
batch file goes to the desired directory and just launch an exe from the directory – Varun Apr 14 '11 at 4:44

2 Answers

up vote 1 down vote accepted
this will kill the command prompt not the method launched from that command prompt.

he is right

do this

 Process process = Runtime.getRuntime ().exec ("/folder/exec.exe") //your application
 p.destroy();
share|improve this answer
this isnt working for my kind of application. it will launch a game HLDS from Steam that has to be launched in console mode and has to pass some parameters to it. – Varun Apr 14 '11 at 4:59
you can pass parameter as wel, same as u do in batch file – Nirmal- thInk beYond Apr 14 '11 at 5:07
@varun In that case you could pass parameters like "exec.exe parameter1 parameter2 parameter3" – Searock Apr 14 '11 at 5:13
tried this but the thing is when i do the same thing on command prompt manually it works fine, but when i do using java code its not executed properly. – Varun Apr 14 '11 at 5:33
have you given proper path? have you tried absolute path? – Nirmal- thInk beYond Apr 14 '11 at 5:37
show 6 more comments

getRuntime() method returns Process class's object and using the Process object you can call destroy() method on the Process object to kill the process

Process p = Runtime.getRuntime().exec("cmd /c start myFile.bat"); //starts the process
p.destroy();    //kills the process
share|improve this answer
+1 I had never noticed the destroy method. Awesome d(^_^)b – Edwin Dalorzo Apr 14 '11 at 4:23
2  
this will kill the command prompt not the method launched from that command prompt. – Varun Apr 14 '11 at 4:43
@varun Well then don't pass cmd directly pass the myFile.bat – Searock Apr 14 '11 at 5:07
@Searock- in that case the exe file doesnt gets its enviroment. have to use cmd prompt – Varun Apr 14 '11 at 5:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.