![]() |
How to forcely quit a process in java
Buddies... Actually i executed wget unix command using Runtime.exec() method and got the process object,now i want to forcely quit the running process as its taking much time to compleate,and i dont want to wait till it compleates.so how cud i forcely quit a process(similar to typing ctrl c in the terminal).please kindly help me.Thanks in advance...........
|
Re: How to forcely quit a process in java
You'll need the process id of the process, then use kill -9 [pid] to kill the process.
|
Re: How to forcely quit a process in java
OK MR.pradeep its fine,actually i cant use kill command bcoz i dont know the process id,anyhow leave it, now tell me how do i know whether this process is compleated or not.sorry for the late reply my internet is down for few days........Thanks for ur previous reply..........
|
Re: How to forcely quit a process in java
buddies i myself found the solution to check whether the process is compleated or not:
solution Code:
try{ |
Re: How to forcely quit a process in java
Cool dude!
|
Re: How to forcely quit a process in java
Thankyou dude........
|
| All times are GMT +5.5. The time now is 13:08. |