码迷,mamicode.com
首页 > 编程语言 > 详细

java实现终止javaw.exe线程

时间:2016-04-05 15:59:37      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

public static void main(String[] args) throws IOException {
        Process process = Runtime.getRuntime().exec("cmd.exe /c tasklist |findstr \"javaw\"");
        Scanner in = new Scanner(process.getInputStream());
        while (in.hasNextLine()) {
            String p = in.nextLine();
            System.out.println(p);
            if (p.indexOf("javaw.exe") != -1) {
                StringBuffer buf = new StringBuffer();
                for (int i = 0; i < p.length(); i++) {
                    char ch = p.charAt(i);
                    if (ch != ‘ ‘) {
                        buf.append(ch);
                    }
                }
                // 打印 javaw.exe的pid
                String pid = buf.toString().split("Console")[0].substring("javaw.exe".length());
                // Runtime.getRuntime().exec("cmd.exe /c tskill " + pid);
                Runtime.getRuntime().exec("ntsd -c q -p 1528" + pid);
            }
        }
    }

 

java实现终止javaw.exe线程

标签:

原文地址:http://www.cnblogs.com/birkhoff/p/5355113.html

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