java启动一个进程、杀死一个进程、显示当前进程

 package com.ffshi.util;

import java.io.IOException;
import java.util.Scanner;

public class JavaWindowsCommandUtil {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub

        // startTask("E://Fetion//Fetion.exe");
        killTask("javaw");

    }

    /**
     * 杀死一个进程
     *
     * @param task
     */
    public static void killTask(String task) {

        try {
            Process process = Runtime.getRuntime().exec("taskList");
            Scanner in = new Scanner(process.getInputStream());
            int count = 0;
            while (in.hasNextLine()) {
                count++;
                String temp = in.nextLine();

                if (temp.contains(task)) {
                    String[] t = temp.split(" ");
                    // 判断该进程所占内存是否大于20M
                    if (Integer.parseInt(t[t.length - 2].replace(",", "")) > 20000) {
                        temp = temp.replaceAll(" ", "");
                        // 获得pid
                        String pid = temp.substring(9, temp.indexOf("Console"));
                        Runtime.getRuntime().exec("tskill " + pid);

                        // dos下开cmd窗口 ntsd -c q -p PID
                        // Runtime.getRuntime().exec("ntsd -c q -p 1528");
                    }
                }
                // System.out.println(count + ":" + temp);
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    /**
     * 显示当前机器的所有进程
     */
    public static void showTaskList() {

        try {
            Process process = Runtime.getRuntime().exec("taskList");
            Scanner in = new Scanner(process.getInputStream());
            int count = 0;
            while (in.hasNextLine()) {
                count++;
                System.out.println(count + ":" + in.nextLine());
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    /**
     * 启动一个进程
     *
     * @param task
     */
    public static void startTask(String task) {
        try {
            Runtime.getRuntime().exec(task);

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值