为什么我的 curl 命令不适用于 Java ProcessBuilder API

Why does my curl command not work with Java ProcessBuilder API

我想从 Java 执行以下 CURL 命令:

curl -v -X PUT --data-binary "@configfile.json" -u username:password -D /tmp/grabbit_headers http:// server:port/grabbit/job

(http:// 和 server... 之间的 space 是根据堆栈溢出指南插入的,但不是我的代码的一部分)

我关注了

http://alvinalexander.com/java/java-exec-processbuilder-process-1、进程 2 和进程 3

创建我的 java 类 使用 ProcessBuilder API 执行 shell 命令。

如果我直接在 shell 上执行 CURL 命令,它会工作并产生预期的结果。如果我通过 Java 类 使用完全相同的命令,它会在没有任何错误的情况下执行,exitCode=0,但不会产生预期的结果。

此处的预期结果是使用 Grabbit (https://github.com/TWCable/grabbit) 将内容从一个 Adob​​e AEM 实例迁移到另一个实例。

以下是我的主要方法:

public String processBuilderExample() throws IOException, InterruptedException
{


    // build the system command we want to run
  List<String> commands;
  String result="";      
  /*
   * CURL Commands:
   * curl -v -X PUT --data-binary "@$configpath" -u $username:$password -D /tmp/grabbit_headers $client$GRABBIT_JOB > /tmp/grabbit
   * */
  String curl_command="curl -v -X PUT --data-binary \"@"+this.configpath+"\""+" -u "+this.username+":"+this.password+" -D /tmp/grabbit_headers "+this.client+this.GRABBIT_JOB;

  commands = new ArrayList<String>(Arrays.asList(curl_command.split(" ")));      

  result=runCommand(commands);
  return result;

}

//@Override
public String runCommand(List<String> commands) throws IOException, InterruptedException
{

  // execute the command
  SystemCommandExecutor commandExecutor = new SystemCommandExecutor(commands);
  int result = commandExecutor.executeCommand();

  // get the stdout and stderr from the command that was run
  StringBuilder stdout = commandExecutor.getStandardOutputFromCommand();
  StringBuilder stderr = commandExecutor.getStandardErrorFromCommand();

  StringBuilder finalReturnString=new StringBuilder();
  finalReturnString.append("<br/>STDOUT:<br/>");
  finalReturnString.append(stdout.toString());
  finalReturnString.append("<br/>STDERR:<br/>");
  finalReturnString.append(stderr.toString());

  return finalReturnString.toString();

}

使用 ProcessBuilder 配置重定向。

">" 重定向是 shell (sh/bash) 的一部分,而不是命令。

参考Runtime's exec() method is not redirecting the output如何使用process builder重定向。

参考&> redirection not working correctly为什么它不起作用。