如何执行 Bash 命令并从 Java 收集输出?

2022-01-23 00:00:00 process command bash java

如何执行 Bash 命令并收集 Java 的输出?

How do I execute Bash commands and collect the output from Java?

大家好,基本上我正在编写一个基本的控制台应用程序,并且希望能够从中运行命令,例如 sudo***、halt、ifconfig 等.

Hi all, basically I am writing a basic console app, and would like to be able to run commands from it, such as sudo***, halt, ifconfig, etc.

有什么见解吗?

推荐答案

可以使用processBuilder API 用于此目的.参见这个例子.

You can use processBuilder API for this purpose. See this example.

相关文章