首页 > 系统服务 > 详细

根据process杀死进程

时间:2017-05-13 17:48:04      阅读:367      评论:0      收藏:0      [点我收藏+]
private static void killProcessTree(Process process) {
        try {
            Field f = process.getClass().getDeclaredField("handle");
            f.setAccessible(true);
            long handl = f.getLong(process);
            Kernel32 kernel = Kernel32.INSTANCE;
            WinNT.HANDLE handle = new WinNT.HANDLE();
            handle.setPointer(Pointer.createConstant(handl));
            int ret = kernel.GetProcessId(handle);
            Long PID = Long.valueOf(ret);
            String cmd = getKillProcessTreeCmd(PID);
            System.out.println("close" + cmd);
            Runtime rt = Runtime.getRuntime();
            Process killPrcess = rt.exec(cmd);
            killPrcess.waitFor();
            killPrcess.destroy();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static String getKillProcessTreeCmd(Long Pid) {
        String result = "";
        if (Pid != null)
            result = "cmd.exe /c taskkill /PID " + Pid + " /F /T ";
        return result;
    }

 

根据process杀死进程

原文:http://www.cnblogs.com/yangqimo/p/6849601.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!