阅读量:0
要在Java中执行.bat文件,你可以使用Runtime
类的exec()
方法。以下是一个示例代码:
import java.io.IOException; public class ExecuteBatFile { public static void main(String[] args) { try { // 指定.bat文件的路径 String batFilePath = "C:/path/to/your/file.bat"; // 执行.bat文件 Process process = Runtime.getRuntime().exec("cmd /c start " + batFilePath); // 等待.bat文件执行完成 int exitCode = process.waitFor(); // 打印.bat文件的退出码 System.out.println("Exit Code: " + exitCode); } catch (IOException | InterruptedException e) { e.printStackTrace(); } } }
请确保将batFilePath
变量替换为你的.bat文件的实际路径。"cmd /c start"
部分用于在Windows上启动.bat文件。如果你在其他操作系统上运行,你需要相应地修改这部分代码。