Thread
:
How to forcely quit a process in java
View Single Post
pradeep
Team Leader
17Mar2007,11:22
You'll need the process id of the process, then use
kill -9 [pid]
to kill the process.