java代码中通过进程名称,杀特定进程实现方法:

 
下面的方法主要实现在windows操作系统中,杀进程名称为java-test.exe的进程。
 
public void killProcess(){
Runtime rt = Runtime.getRuntime();
Process p = null;
try {
rt.exec("cmd.exe /C start wmic process where name='winword.exe' call terminate");
} catch (IOException e) {
e.printStackTrace();
}
}