首页 >Java >java教程 >为什么`Runtime.exec(String)`有时无法正确执行命令?

为什么`Runtime.exec(String)`有时无法正确执行命令?

Susan Sarandon
Susan Sarandon原创
2024-12-05 22:22:10456浏览

Why Does `Runtime.exec(String)` Sometimes Fail to Execute Commands Correctly?

为什么 Runtime.exec(String) 对于某些命令的行为不同?

Runtime.exec(String) 允许执行以下命令底层操作系统的环境。然而,虽然它对某些命令无缝工作,但其他命令会出现问题。

为什么会有差异?

关键区别源于命令不执行的事实在 shell 环境中。 shell 提供了 Runtime.exec(String) 未执行的基本服务,从而导致错误。

失败何时发生?

命令在依赖时失败关于 shell 功能,例如:

  • 正确拆分引号和空格: Runtime.exec(String) 天真地在空格上分割,这可以将“My File.txt”等参数分解为单独的文件名。
  • 扩展通配符和通配符: shell 将 *.doc 等模式重写到实际文件中。 Runtime.exec(String) 不执行此扩展。
  • 处理管道和重定向: shell 设置输出重定向,Runtime.exec(String) 不处理该输出重定向。
  • 扩展变量和命令: shell 在执行命令之前替换 shell 变量和命令。 Runtime.exec(String) 按字面意思传递它们。

解决方案

处理这种情况有两种方法:

委托给 Shell(简单但草率):

将命令传递到 shell(例如,使用 Runtime.exec(String[])):

String myCommand = "cp -R '" + myFile + "' $HOME 2> errorlog";
Runtime.getRuntime().exec(new String[] { "bash", "-c", myCommand });

承担 Shell 职责(安全和安全)健壮):

使用ProcessBuilder来处理类似 shell 的任务,例如变量扩展、重定向和分词:

String myFile = "some filename.txt";
ProcessBuilder builder = new ProcessBuilder(
    "cp", "-R", myFile,
    System.getenv("HOME")
);
builder.redirectError(ProcessBuilder.Redirect.to(new File("errorlog")));
builder.start();

以上是为什么`Runtime.exec(String)`有时无法正确执行命令?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn