首页 > 编程语言 > 详细

Java执行bat批处理文件,并关闭cmd窗口

时间:2014-12-19 17:26:25      阅读:189      评论:0      收藏:0      [点我收藏+]
package com.baobaotao.test;

import java.io.IOException;

public class CmdMain {
	public static void main(String[] args) {

		// 执行批处理文件
		String strcmd = "cmd /c start  E:\\run.bat";
		Runtime rt = Runtime.getRuntime();
		Process ps = null;
		try {
			ps = rt.exec(strcmd);
		} catch (IOException e1) {
			e1.printStackTrace();
		}
		try {
			ps.waitFor();
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		int i = ps.exitValue();
		if (i == 0) {
			System.out.println("执行完成.");
		} else {
			System.out.println("执行失败.");
		}
		ps.destroy();
		ps = null;

		// 批处理执行完后,根据cmd.exe进程名称
		// kill掉cmd窗口
		new CmdMain().killProcess();

	}

	public void killProcess() {
		Runtime rt = Runtime.getRuntime();
		Process p = null;
		try {
			rt.exec("cmd.exe /C start wmic process where name='cmd.exe' call terminate");
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

Java执行bat批处理文件,并关闭cmd窗口

原文:http://blog.csdn.net/benjamin_whx/article/details/42029587

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