I know how to start the batch file using java code. When i run the batch file command prompt is opened. To close the command prompt i am using the taskill /im cmd.exe. but the problem is that the command prompt that is used to start the jboss is also closed. i want to kill the cmd with a particular process id. How do i get the process id of a particular cmd promt and kill that using java
|
Run the batch file with |
|||
|
|
|
If you start the batch file with Runtime.exec(), it returns you a Process object. Calling the destroy() method will kill that process. |
|||||
|
|
Here is the solution that works: to close command window after executing the commands from the batch (.bat) file you need to add "exit" (without the quotes) in a new line of your batch file. If you want to delay the execution this is the way and it works:
Cheers |
||||
|
|
|
can't you add PS: I've never worked on batch files just the command prompt so I'm assuming it accepts the same commands. |
|||||
|
|
Although this seems to be an old question and probably resolved.. I struggled with the same thing for a long time.. Finally this works
|
|||
|
|
|
I too had the same problem. I first used as
Then I tried as below. It works fine.
Try this. |
||||
|
|