首页 > Java > java教程 > 如何使用 Java 的 Runtime.getRuntime() 捕获并显示命令输出?

如何使用 Java 的 Runtime.getRuntime() 捕获并显示命令输出?

Mary-Kate Olsen
发布: 2024-12-22 21:18:18
原创
857 人浏览过

How Can I Capture and Display Command Output Using Java's Runtime.getRuntime()?

使用 Java 的 Runtime.getRuntime() 获取命令输出

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板