阅读量:0
在Java中,可以通过使用Runtime
类或ProcessBuilder
类来调用shell命令。
- 使用
Runtime
类:
String command = "ls -l"; // 要执行的shell命令 Runtime runtime = Runtime.getRuntime(); Process process = runtime.exec(command);
- 使用
ProcessBuilder
类:
String command = "ls -l"; // 要执行的shell命令 ProcessBuilder processBuilder = new ProcessBuilder(command); Process process = processBuilder.start();
以上两种方法都会返回一个Process
对象,通过该对象可以获取到命令的执行结果、错误信息等。
注意:在调用shell命令时,应注意命令的正确性和安全性,避免出现安全漏洞。