溫馨提示×

SpringBoot CommandLine與Shell腳本如何交互

小樊
117
2024-07-13 19:02:28
欄目: 編程語言

要在SpringBoot應用中與Shell腳本交互,可以使用Java中的ProcessBuilder類來執(zhí)行Shell命令,并通過標準輸入輸出流來與Shell腳本交互。

以下是一個簡單的示例代碼,演示了如何在SpringBoot應用中執(zhí)行Shell腳本并與其交互:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ShellController {

    @GetMapping("/executeShell")
    public String executeShell() {
        try {
            ProcessBuilder pb = new ProcessBuilder("/path/to/your/shell/script.sh");
            Process process = pb.start();

            // 讀取Shell腳本的輸出
            BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
            String line;
            while ((line = reader.readLine()) != null) {
                System.out.println(line);
            }

            // 向Shell腳本輸入?yún)?shù)
            process.getOutputStream().write("input parameters\n".getBytes());
            process.getOutputStream().flush();

            // 等待Shell腳本執(zhí)行結(jié)束
            int exitCode = process.waitFor();
            System.out.println("Shell腳本執(zhí)行完畢,退出碼為:" + exitCode);

            return "Shell腳本執(zhí)行完畢,退出碼為:" + exitCode;
        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
            return "執(zhí)行Shell腳本出錯:" + e.getMessage();
        }
    }
}

在這個示例中,我們通過ProcessBuilder類創(chuàng)建一個新的進程來執(zhí)行Shell腳本,并通過標準輸入輸出流與Shell腳本交互。在Shell腳本執(zhí)行完畢后,我們可以獲取其退出碼來判斷執(zhí)行結(jié)果。

請注意,要確保在SpringBoot應用中執(zhí)行Shell腳本時,應注意安全性和權限控制,避免造成潛在的安全風險。

0