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

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.

share|improve this question
java runs in a virtual machine, it's like a closed box; by no means you kill a system process in pure java. There might be options invoking native interfaces. See JNI or JNA – digital illusion Jun 15 '11 at 10:33
@downvoter may I please know the reason? – gekkostate Dec 8 '11 at 12:27

5 Answers

up vote 15 down vote accepted

If you start the process from with in your Java application (ex. by calling Runtime.exec() or ProcessBuilder.start()) then you have a valid Process reference to it, and you can invoke the destroy() method in Process class to kill that particular process.

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 Runtime.exec() on kill command under Unix / Linux and check for return values to ensure that the application was killed or not (0 means success, -1 means error). But that of course will make your application platform dependent.

share|improve this answer

In Windows you probably have to use this command

taskkill /F /IM <processname>.exe 

to kill it forcefully. So it will be

Runtime.getRuntime().exec("taskkill /F /IM <processname>.exe")
share|improve this answer

AFAIU java.lang.Process is the process created by java itself (like Runtime.exec('firefox'))

You can use system-dependant commands like

 Runtime rt = Runtime.getRuntime();
  if (System.getProperty("os.name").toLowerCase().indexOf("windows") > -1) 
     rt.exec("taskkill " +....);
   else
     rt.exec("kill -9 " +....);
share|improve this answer

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:

ProcessBuilder pb = new ProcessBuilder(args);
Process process = pb.start();
Thread.sleep(1000);
process.destroy();
process.waitFor();

And the invocation:

$ tusc -f -p -s signal,kill -e /opt/java1.5/bin/java testDestroy sh -c 'trap "echo TERM" TERM; sleep 10'

dies after 10s (not killed after 1s as expected) and shows:

...
[19999]   Received signal 15, SIGTERM, in waitpid(), [caught], no siginfo
[19998] kill(19999, SIGTERM) ............................................................................. = 0
...

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.

share|improve this answer

From the API doc:

public abstract void destroy()

Kills the subprocess. The subprocess represented by this Process object is forcibly terminated.

I'd be interested to learn how you managed to miss that method when looking at the API.

share|improve this answer
8  
As far as I know that will only kill a process which you create from within your app. I don't think that will let you kill arbitrary processes which are already running / started independently of Java. – Phill Sacre Jun 15 '11 at 10:33
@Phill: You're right, but it's not clear from the qeustion whether that is what is wanted. – Michael Borgwardt Jun 15 '11 at 10:38

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.