Java书写cmd命令
时间: 2023-06-17 14:05:49 浏览: 94
Java执行cmd命令两种实现方法解析
在Java中可以使用 `Runtime.getRuntime().exec("cmd /c your_command_here")` 方法执行 cmd 命令,其中 `your_command_here` 部分为你要执行的命令字符串,例如:
```java
try {
Process p = Runtime.getRuntime().exec("cmd /c dir");
BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
```
上述代码会执行 `dir` 命令,并输出命令执行结果。注意在命令前加上 `cmd /c`,意为执行完命令后自动关闭 cmd 窗口。
阅读全文