91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

SpringBoot CommandLine與Shell腳本如何交互

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

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

以下是一個簡單的示例代碼,演示了如何在SpringBoot應用中執行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腳本輸入參數
            process.getOutputStream().write("input parameters\n".getBytes());
            process.getOutputStream().flush();

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

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

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

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

0
师宗县| 宜良县| 土默特左旗| 合肥市| 台山市| 永康市| 凤台县| 鄂尔多斯市| 繁昌县| 宁晋县| 黄平县| 巫山县| 横峰县| 山阴县| 郸城县| 云霄县| 金沙县| 克拉玛依市| 长沙市| 阿拉尔市| 双桥区| 宁海县| 皋兰县| 山丹县| 柳河县| 古蔺县| 小金县| 武定县| 盈江县| 炎陵县| 宁河县| 弥渡县| 合江县| 阜城县| 焉耆| 女性| 和顺县| 舟曲县| 乡宁县| 西平县| 铜梁县|