從 C# 執行 Python 腳本:綜合指南
在跨語言合作領域,從 C# 執行 Python 腳本的問題經常出現。儘管試圖提供簡潔的答案,但細節有時仍然難以捉摸。讓我們深入研究細節並闡明這個過程。
主要挑戰在於建立 Python 執行的命令列參數。首先,您必須提供 Python 執行檔的完整路徑作為 ProcessStartInfo 中的 FileName。接下來,透過合併腳本路徑和要處理的檔案來組裝 Arguments 字串。
要擷取 Python 腳本的輸出,請將 UseShellExecute 設定為 false。這也可以使用 RedirectStandardOutput。
調整後的程式碼:
private void run_cmd(string cmd, string args) { ProcessStartInfo start = new ProcessStartInfo(); start.FileName = "my/full/path/to/python.exe"; start.Arguments = string.Format("{0} {1}", cmd, args); start.UseShellExecute = false; start.RedirectStandardOutput = true; using (Process process = Process.Start(start)) { using (StreamReader reader = process.StandardOutput) { string result = reader.ReadToEnd(); Console.Write(result); } } }
在此程式碼中,FileName 屬性指向實際的 Python 執行檔。 Arguments 字串連接腳本路徑和 Python 程式碼要讀取的檔案。
進一步說明:
以上是如何從 C# 運行 Python 腳本並捕獲其輸出?的詳細內容。更多資訊請關注PHP中文網其他相關文章!