Runtime.exec()无法运行" su - postgres -c' pg_dump ...'"

时间:2010-12-30 17:10:32

标签: java linux runtime.exec

这是我想要运行的命令:

su - postgres -c "pg_dump ....."

备份postgres数据库。

如果我现在在linux shell中,作为root,它的效果很好。

但是现在,我想从java应用程序运行它,如:

String cmd = "su - postgres -c \"pg_dump --port 5432 .....\""
Process p = Runtime.getRuntime().exec(cmd);
// read the error stream and input stream
p.waitFor();

它会抛出错误:

su: unknown option "--port"
please try "su --help" to get more information

现在我将代码更改为:

Process p = Runtime.getRuntime().exec(new String[0]{cmd});
// read the error stream and input stream
p.waitFor();

Cannot run program "su - postgres -c \"pg_dump .....\"": java.io.IOException: error=2, no that file or directory

我现在该怎么办?

2 个答案:

答案 0 :(得分:3)

exec(new String[]{"sh", "-c", "su - postgres ..."});

答案 1 :(得分:3)

除了上面给出的答案(并且理解你的问题很好),请记住,只需将命令放在shell脚本文件中,就可以让生活更轻松。例如,dumppg.sh文件只包含两行:

#!/bin/sh
su - postgres -c "pg_dump ....."

让它可执行,并且(在测试之后)从java调用它。