Java Runtime.getRuntime() 允许从 Java 程序执行命令行程序。它的 exec() 方法接受一个命令参数数组并返回一个 Process 对象。然而,从命令获取输出是完全不同的任务。
为了检索命令输出,Process 对象分别通过 getInputStream() 和 getErrorStream() 提供输入和错误流。这是获取并打印输出的代码的增强版本:
Runtime rt = Runtime.getRuntime(); String[] commands = {"system.exe", "-get t"}; Process proc = rt.exec(commands); BufferedReader stdInput = new BufferedReader(new InputStreamReader(proc.getInputStream())); // Read the output from the command System.out.println("Here is the standard output of the command:\n"); String s = null; while ((s = stdInput.readLine()) != null) { System.out.println(s); }
通过从输入流读取,您可以访问并打印命令的输出。请注意,您在命令执行过程中可能会遇到错误,因此建议还使用 getErrorStream() 检查错误流。
有关更多详细信息,请参阅 Process API 文档。或者,考虑使用 ProcessBuilder 类来更好地控制流程配置。
以上是如何使用 Java 的 Runtime.getRuntime() 捕获并显示命令输出?的详细内容。更多信息请关注PHP中文网其他相关文章!