gpt4 book ai didi

java - 如何使用 Java 执行系统命令 (linux/bsd)

转载 作者:IT老高 更新时间:2023-10-28 20:51:17 30 4
gpt4 key购买 nike

我试图廉价并在 Java 中执行本地系统命令 (uname -a)。我希望从 uname 获取输出并将其存储在字符串中。这样做的最佳方法是什么?当前代码:

public class lame {

public static void main(String args[]) {
try {
Process p = Runtime.getRuntime().exec("uname -a");
p.waitFor();
BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line=reader.readLine();

while (line != null) {
System.out.println(line);
line = reader.readLine();
}

}
catch(IOException e1) {}
catch(InterruptedException e2) {}

System.out.println("finished.");
}
}

最佳答案

你的方法离我可能做的不远:

Runtime r = Runtime.getRuntime();
Process p = r.exec("uname -a");
p.waitFor();
BufferedReader b = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";

while ((line = b.readLine()) != null) {
System.out.println(line);
}

b.close();

当然,处理您关心的任何异常。

关于java - 如何使用 Java 执行系统命令 (linux/bsd),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/792024/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com