可能的原因java.io.IOException:CreateProcess error = 2,系统找不到指定的文件

时间:2012-03-19 13:58:19

标签: java sql winapi postgresql

我正在尝试通过java执行'VACUUM VERBOSE'命令。 这是我的代码

public void executeCommand()
{
    String cmd1= "cmd.exe /c start";
    String location="C:\\PROGRA~1\\PostgreSQL\\8.3\\bin\\";
    String postgresCommand="psql -h localhost -U postgres -d postgres";
    String autoVaccum="-c \"vacuum verbose\"";
    String []actualCmd={cmd1,location,postgresCommand,autoVaccum};

    Process process=null;
    try {
        process = Runtime.getRuntime().exec(actualCmd);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}


public static void main(String[] args) {
    MyTest test= new MyTest();
    test.executeCommand();

}

但我得到了以下异常

java.io.IOException: Cannot run program "cmd.exe /c start": CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessBuilder.start(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at MyTest.executeCommand(MyTest.java:36)
    at MyTest.main(MyTest.java:48)
Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessImpl.create(Native Method)
    at java.lang.ProcessImpl.<init>(Unknown Source)
    at java.lang.ProcessImpl.start(Unknown Source)
    ... 5 more

当我直接在Start-&gt;中直接输入上面的字符串时运行窗口成功执行 例如。 cmd.exe / C启动C:\ PROGRA~1 / PostgreSQL / 8.3 / bin / psql -h localhost -U postgres -d postgres -c“vacuum verbose”

有人知道上述程序到底出了什么问题吗?

2 个答案:

答案 0 :(得分:1)

有多种方法可以调用exec()。你正在使用的,它将String []作为参数,期望每个标记位于数组的不同部分。所以呼吁

Runtime.getRuntime().exec("cmd /c start executable arg1 arg2");

使用数组而不是一个字符串调用时称为

Process p = Runtime.getRuntime().exec(new String[]{"cmd","/c","start","executable","arg1","arg2");    
BufferedReader inReader = new BufferedReader(new InputStreamReader(p.getInputStream()));
BufferedWriter outWriter = new BufferedWriter(new OutputStreamWriter(p.getOutputStream()));

exec()返回一个Process对象,然后您可以使用getInputStream()获取输出。这实际上是进程的输出,它是java代码的输入。然后,您可以像任何其他流一样阅读它,并在您认为合适时将其显示给用户。

答案 1 :(得分:0)

您将cmd.exe /c start作为单个参数传递,因此它会查找名为cmd.exe /c start的文件并失败。

相反,将cmd1拆分为两个字符串:cmd.exe/c start