我正在尝试为 LFTP 制作一个 maven 插件,这涉及从我的 java 应用程序中调用 LFTP 命令行程序。
但是我无法让它使用单引号、双引号、转义单/双引号来处理我传入的命令。
到目前为止,我所拥有的代码是:
final String command = "lftp -e 'set ftp:ssl-protect-data true; put -O /data/upload/ src/test/resources/test-file.txt; bye' -u username,password -p 21 192.168.1.100"
final CommandLine cmdLine = CommandLine.parse(command.toString());
final DefaultExecutor executor = new DefaultExecutor();
executor.setWorkingDirectory(new File(baseDir));
final int result = executor.execute(cmdLine);
以及寻找下一步尝试的建议。
编辑#1:我试图利用org.apache.commons.exec.CommandLine
和作为预先完成的字符串,但它导致以下错误:
Unknown command `set ftp:ssl-protect-data true; put -O /data/upload/ src/test/resources/test-file.txt; bye'.
Exception in thread "main" org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1)
at org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java:377)
at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:160)
at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:147)
at org.welsh.build.automation.lftp.plugin.TestClass.main(TestClass.java:30)
但是当我打印出生成的命令并手动运行它时,它工作正常。
编辑#2:增加了一些清晰度。