编程语言
首页 > 编程语言> > 如何使用Java Runtime执行文件

如何使用Java Runtime执行文件

作者:互联网

我正在尝试使用Runtime.getRuntime().exec(command)从Java执行一个简单的批处理文件;
但面对问题
以下是我的代码段

public class Path {
        public static void main(String args[]){
            String[] command = new String[3];
            command[0]="cmd";
            command[1]="/C";
            command[2]="D:/alt/a.bat";
    Process p;
        try {
            p = Runtime.getRuntime().exec(command);
            BufferedReader stdInput = new BufferedReader(new InputStreamReader(
                    p.getInputStream()));
            BufferedReader stdError = new BufferedReader(new InputStreamReader(
                    p.getErrorStream()));
            String s = null;
            while ((s = stdInput.readLine()) != null) {
                System.out.println(s);
            }
            while ((s = stdError.readLine()) != null) {
                System.out.println(s);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

批处理a.bat中包含ant -f runme.xml测试
并且runme.xml驻留在D:/ alt物理位置,该位置具有目标测试,到目前为止一切正常
但是当我尝试执行上面的Java代码时,下面是输出

D:\RCPStack\Path>ant -f runme.xml test  Buildfile: runme.xml does not
exist! Build failed

当我手动执行时,它工作正常,似乎是问题出在代码上
以下是手动执行输出

如何解决这个问题(我不知道代码是否不正确)并作为最佳实践进行处理

解决方法:

尝试使用方法Runtime.exec(String cmd,String [] envp,File dir)
将工作目录设置为D:/ alt /.

这是因为必须在runme.xml所在的目录中执行Ant,以便Ant可以找到它.

标签:runtime-exec,java,ant
来源: https://codeday.me/bug/20191202/2085286.html