java执行windows 的cmd命令
时间: 2023-09-08 13:12:59 浏览: 216
你可以使用Java的`Runtime`类来执行Windows的cmd命令。以下是一个示例代码:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class CmdExecutionExample {
public static void main(String[] args) {
try {
// 创建进程并执行cmd命令
Process process = Runtime.getRuntime().exec("cmd /c dir");
// 读取命令输出
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("Exit Code: " + exitCode);
} catch (IOException | InterruptedException e) {
e.printStackTrace();
}
}
}
```
在上面的示例中,使用`Runtime.getRuntime().exec()`方法执行了`cmd /c dir`命令。你可以根据需要修改命令内容,并根据命令的输出进行相应的处理。
阅读全文