java交互linux命令
时间: 2023-08-29 15:05:46 浏览: 119
Java可以使用Runtime.getRuntime().exec()方法来执行Linux命令,例如:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class LinuxCommand {
public static void main(String[] args) {
try {
// 执行 ls 命令
Process process = Runtime.getRuntime().exec("ls");
// 读取命令输出
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
// 等待命令执行完毕
int exitCode = process.waitFor();
System.out.println("Command exited with code " + exitCode);
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
```
注意:使用Runtime.getRuntime().exec()方法执行命令时,需要注意命令参数的正确性,以及处理命令输出流和错误流,避免出现阻塞或者死锁的情况。
阅读全文