在Java中,可以使用Runtime
類的exec()
方法執行批處理文件。
以下是一個簡單的示例:
public class CallBatchFile {
public static void main(String[] args) {
try {
// 調用批處理文件
Process process = Runtime.getRuntime().exec("path_to_batch_file.bat");
// 獲取批處理文件的輸出
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();
}
}
}
請將path_to_batch_file.bat
替換為實際的批處理文件路徑。運行以上代碼將調用批處理文件并打印出其輸出。