java代码实现执行cmd命令
时间: 2023-12-17 11:03:32 浏览: 163
可以使用Java的`Runtime`类来执行cmd命令。下面是一个简单的示例代码:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class CmdExecution {
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("命令执行完毕,退出码:" + exitCode);
} catch (IOException | InterruptedException e) {
e.printStackTrace();
}
}
}
```
上述代码执行了`dir`命令,输出当前目录下的文件和文件夹列表。你可以根据自己的需求修改命令内容。注意,`cmd /c`用于执行完命令后关闭命令行窗口。
阅读全文