Java 调用bat文件并传入参数,并且不出现cmd的黑框框_传入启动参数 无边框怎么弄_跨时代135的博客-CSDN博客

常规调用方式:(这个肯定会弹一下黑 框)

  Runtime.getRuntime().exec("cmd /c start XXX.bat");

解决不 弹框只需要“start”后面加一个参数“/b”就行:

  Runtime.getRuntime().exec("cmd /c start /b XXX.bat");

import java.io.InputStream;

/**

 */

public class BatTest {

    public static void main(String[] args) {

        runbat("d:\test.bat", "1.1.1.1", "111");

    }

    /** 文件路径一定不要写错了,比如没有空格之类的,因为不会报错,导致很难排查
     * 执行批处理命令  
     */
    public static void runbat(String batPath, String... argStrings) {
        String cmd = "cmd /c start /b " + batPath + " ";
        if (argStrings != null && argStrings.length > 0) {
            for (String string : argStrings) {
                cmd += string + " ";
            }
        }
        try {
            Process ps = Runtime.getRuntime().exec(cmd);
            InputStream inputStream = ps.getInputStream();
            byte[] by = new byte[1024];
//            while (inputStream.read(by) != -1) {

                  if(new String(by,"utf-8")).contains("echo success")){

break;

}
//                System.out.println(new String(by,"utf-8"));
//            }
            inputStream.close();
        } catch (Exception ioe) {
            ioe.printStackTrace();
        }
    }
}

如何判断bat处理命令结束。

比如在bat命令尾部加上 echo success 可以根据这个来判断命令处理完毕。

然后,跳出读取流。否则会一直处于等待状态。


原网址: 访问
创建于: 2023-05-30 18:00:15
目录: default
标签: 无

请先后发表评论
  • 最新评论
  • 总共0条评论