首页 > 编程 > Java > 正文

解决Java调用BAT批处理不弹出cmd窗口的方法分析

2019-11-26 16:04:50
字体:
来源:转载
供稿:网友

常规调用方式:(这个肯定会弹出cmd窗口)

复制代码 代码如下:

Runtime.getRuntime().exec("cmd.exe   /C   start   D://test.bat");

解决不弹框只需要“start”后面加一个参数“/b”就行:
复制代码 代码如下:

Runtime.getRuntime().exec("cmd.exe   /C   start   /b   D://test.bat");

复制代码 代码如下:

Runtime rt = Runtime.getRuntime();
Process ps = null;
try {
   ps = rt.exec("cmd.exe /C start /b D://test.bat");
} catch (IOException e1) {
   e1.printStackTrace();
}
ps.waitFor();
int i = ps.exitValue();
if (i == 0) {
  System.out.println("执行完成.") ;
} else {
  System.out.println("执行失败.") ;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表