大家好,又见面了,我是你们的朋友全栈君。
//显示进程
Process process = Runtime.getRuntime().exec(“tasklist”);
Scanner in=new Scanner(process.getInputStream());
while(in.hasNextLine()){
String p=in.nextLine();
//打印所有进程
System.out.println(p);
if(p.contains(“javaw.exe”)){
StringBuffer buf=new StringBuffer();
for(int i=0;i
char ch=p.charAt(i);
if(ch != ‘ ‘){
buf.append(ch);
}
}
//打印 javaw.exe的pid
System.out.println(buf.toString().split(“Console”)[0].substring(“javaw.exe”.length()));
}
}
//杀死进程,1,纯dos下,开cmd窗口 ntsd -c q -p PID
// Runtime.getRuntime().exec(“ntsd -c q -p 1528”);
//2 ,tskill PID(process ID)
// Runtime.getRuntime().exec(“tskill 3188”);
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/136884.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...