好的,要删除Perfoce标签,CommandLine命令为:p4 label -d mylabel123
。
现在我想用Java执行这个命令。我试过Runtime.exec()
,它就像魅力一样。但是,当我使用ProcessBuilder
运行相同的命令时,它无法正常工作。任何帮助表示赞赏。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException, InterruptedException {
exec1("p4 label -d mylabel123");
exec2("p4","label -d mylabel123");
}
public static void exec1(String cmd)
throws java.io.IOException, InterruptedException {
System.out.println("Executing Runtime.exec()");
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(cmd);
BufferedReader stdInput = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
BufferedReader stdError = new BufferedReader(new InputStreamReader(
proc.getErrorStream()));
String s = null;
while ((s = stdInput.readLine()) != null) {
System.out.println(s);
}
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
proc.waitFor();
}
public static void exec2(String... cmd) throws IOException, InterruptedException{
System.out.println("\n\nExecuting ProcessBuilder.start()");
ProcessBuilder pb = new ProcessBuilder();
pb.inheritIO();
pb.command(cmd);
Process process = pb.start();
process.waitFor();
}
}
方法exec1()输出:标签mylabel123已删除。
方法exec2()输出:未知命令。尝试帮助'信息。
答案 0 :(得分:3)
ProcessBuilder
希望您将命令名称和每个参数作为单独的字符串提供。当你(间接)执行
pb.command("p4", "label -d mylabel123");
您正在构建一个使用单个参数p4
运行命令label -d mylabel123
的进程。您希望使用三个单独的参数运行该命令:
pb.command("p4", "label", "-d", "mylabel123");
你的线索是第二种情况下的错误信息是由p4
命令发出的(它说“尝试'p4 help'获取信息”)。显然,问题在于争论。但是,我授予你p4
通过将其中一个参数称为“命令”确实造成了一些混淆。