I would like to know how to "kill" a process that has started up. I am aware of the Process API, but I am not sure, If I can use that to "kill" an already running process, such as firefox.exe etc. If the Process API can be used, can you please point me into the correct direction? If not, what are the other available options? Thanks.
|
|
If you start the process from with in your Java application (ex. by calling But be aware that if the process that you invoke creates new sub-processes, those may not be terminated (see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4770092). On the other hand, if you want to kill external processes (which you did not spawn from your Java app), then one thing you can do is to call O/S utilities which allow you to do that. For example, you can try a |
||||
|
|
|
In Windows you probably have to use this command
to kill it forcefully. So it will be
|
||||
|
|
|
AFAIU java.lang.Process is the process created by java itself (like Runtime.exec('firefox')) You can use system-dependant commands like
|
||||
|
|
|
It might be a java interpreter defect, but java on HPUX does not do a kill -9, but only a kill -TERM. I did a small test testDestroy.java:
And the invocation:
dies after 10s (not killed after 1s as expected) and shows:
Doing the same on windows seems to kill the process fine even if signal is handled (but that might be due to windows not using signals to destroy). Actually i found Java - Process.destroy() source code for Linux related thread and openjava implementation seems to use -TERM as well, which seems very wrong. |
|||
|
|
I'd be interested to learn how you managed to miss that method when looking at the API. |
|||||||
|
