我正在制作一些监控线程。已将进程ID(PID)存储在hash map
中。在线程中我正在检索那些PID,并且在某些条件下想要杀死特定的PID。我在网上搜索,对于windows
环境,kill命令是:Runtime.getRuntime().exec("taskkill /F /PID "+PID_id);
其中PID_id是我从map获得的PID。我想知道,我怎样才能在ubuntu
(Linux
)环境中做这样的事情。
答案 0 :(得分:1)
Process process = Runtime.getRuntime().exec("kill -9 "+PID_id);
int retCode = process.waitFor();