共计 393 个字符,预计需要花费 1 分钟才能阅读完成。
Java 中可以通过 Runtime
类或者 ProcessBuilder
类来调用 shell 命令。
- 使用
Runtime
类调用 shell 命令:
String command = "ls -l"; // 要执行的 shell 命令
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec(command); // 执行命令
- 使用
ProcessBuilder
类调用 shell 命令:
String command = "ls -l"; // 要执行的 shell 命令
ProcessBuilder builder = new ProcessBuilder(command);
Process process = builder.start(); // 执行命令
以上代码都是执行了 ls -l
命令,并将结果输出到控制台。你可以根据自己的需求修改要执行的 shell 命令。
丸趣 TV 网 – 提供最优质的资源集合!
正文完