码迷,mamicode.com
首页 > 系统相关 > 详细

根据process杀死进程

时间:2017-05-13 18:10:42      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:class   exce   static   close   getc   try   constant   win   except   

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杀死进程

标签:class   exce   static   close   getc   try   constant   win   except   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!