C#調用Python程序傳參數獲得返回值

說明

C# 調用 Python 程序有多種方式,本篇用的是第 4 種:

  • nuget的ironPython;
  • 用 c/c++ 調用python,再封裝成庫文件,c# 調用;
  • c# 命令行調用.py文件執行;
  • python 程序制作成 .exe 可執行文件,c# 使用命令行進行傳參取返回值。

1. Python 腳本

先建個測試腳本 d://Test/EchoHi.py 代碼如下:

import sys
def EchoHi(a):
    return ("Hello, " + a)
if __name__ == "__main__":
    # print('參數列表:', str(sys.argv))
    print(EchoHi(sys.argv[1]))

測試一哈

D:\Test>python EchoHi.py Mr.Tree
Hello, Mr.Tree

2. 打包成Windows可執行文件

首先安裝給python打包的python包

D:\Test>pip install pyinstaller

執行打包命令,看輸出

D:\Test>pyinstaller -F EchoHi.py

21185 INFO: Writing RT_ICON 7 resource with 1128 bytes
21192 INFO: Updating manifest in D:\Test\build\EchoHi\run.exe.0u78g5s3
21444 INFO: Updating resource type 24 name 1 language 0
21447 INFO: Appending archive to EXE D:\Test\dist\EchoHi.exe
21634 INFO: Building EXE from EXE-00.toc completed successfully.

這裡有生成的可執行文件的位置,進入可執行文件的目錄測試

D:\Test\dist>EchoHi.exe Mr.Tree
Hello, Mr.Tree

3. C# 程序

CallCmd.cs 代碼如下

using System;
class Test
{
    public static void Main(String[] args)
    {
      string cmdpath = "d://Test/dist/EchoHi.exe";
      string arguments = "Mr.Cmd";
      Console.WriteLine(CallCMD(cmdpath, arguments));
    
    }
    public static string CallCMD(string _command, string _arguments){
      System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(_command, _arguments);
      psi.CreateNoWindow = true;
      psi.RedirectStandardOutput = true;
      psi.UseShellExecute = false;
      System.Diagnostics.Process p = System.Diagnostics.Process.Start(psi);
      return(p.StandardOutput.ReadToEnd());
    }
}

特別需要註意的是:

命令參數是 arguments 內不能有多餘空格,因為每個空格都會被識別為分割;
還要註意加一層轉義,假執行命令為 EchoHi.exe Mr.\"Tree\" (Tree加瞭雙引號)時,定義就應該為

string arguments = "\\\"Mr.Cmd\\\"";

此後編譯運行即可。

4. 參考

[1] https://blog.csdn.net/qq_42063091/article/details/82418630

到此這篇關於C#調用Python程序傳參數獲得返回值的文章就介紹到這瞭,更多相關C#調用Python獲得返回值內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: