Java操作Cmd命令

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

/**
 * 日期 : 2015年9月14日<br>
 * 项目 : Test<br>
 * 功能 : <br>
 */
public class Cmd {
    public static void main(String[] args) {
        BufferedReader br = null;
        try {
            while (true) {
                //运行多级cmd可以用 && 让命令在一行中运行
                List<String> list = run("cmd.exe /c d: && cd D:\\project && gulp phone");
                if (list == null || list.size() < 1) {
                    return;
                }
                String str = list.get(1);
                String[] arr = str.split("'");
                str = arr[1];
                if (arr.length != 2) {
                    return;
                }
                list = run("cmd.exe /c d: && cd D:\\project && npm install " + str);
                Thread.sleep(1000);
            }

        } catch (Exception e) {
            e.printStackTrace();
        } finally {

            if (br != null) {
                try {
                    br.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * Description :
     * 
     * @return
     * @throws IOException
     */
    private static List<String> run(String cmd) throws IOException {
        BufferedReader br;
        //运行cmd
        Process p = Runtime.getRuntime().exec(cmd);
        //获得输出流
        br = new BufferedReader(new InputStreamReader(p.getInputStream()));
        List<String> list = new ArrayList<String>();
        String line = null;
        //读取内容
        while ((line = br.readLine()) != null) {
            System.out.println(line);
            list.add(line);
        }
        //打印异常输出流
        if (p.getErrorStream() != null) {
            br = new BufferedReader(new InputStreamReader(p.getErrorStream()));
            String line2 = null;
            while ((line2 = br.readLine()) != null) {
                System.out.println(line2);
                list.add(line2);
            }
        }
        return list;
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值