java怎么調(diào)用批處理文件

小億
103
2023-12-05 10:27:25

在Java中,可以使用Runtime類(lèi)的exec()方法執(zhí)行批處理文件。

以下是一個(gè)簡(jiǎn)單的示例:

public class CallBatchFile {
    public static void main(String[] args) {
        try {
            // 調(diào)用批處理文件
            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);
            }

            // 等待批處理文件執(zhí)行完畢
            int exitCode = process.waitFor();
            System.out.println("Exit Code: " + exitCode);
        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
        }
    }
}

請(qǐng)將path_to_batch_file.bat替換為實(shí)際的批處理文件路徑。運(yùn)行以上代碼將調(diào)用批處理文件并打印出其輸出。

0