• C# 调用 python3


    1.C# 调用python

    本质上是使用命令行运行python

    1.1 C# 使用命令行

    program.cs

    using System;
    using System.Diagnostics;
    using System.IO;
    
    namespace test
    {
        class Program
        {
            static void Main(string[] args)
            {
                Program p = new Program();
                string result = p.run_cmd("ping.exe", "8.8.8.8 -n 2");
                Console.WriteLine(result);
    
                Console.ReadKey();
            }
    
            public string run_cmd(string program, string cmd)
            {
                ProcessStartInfo start = new ProcessStartInfo();
                start.FileName = program;
                start.Arguments = cmd;
                start.UseShellExecute = false;          // Do not use OS shell
                start.CreateNoWindow = true;            // We don't need new window
                start.RedirectStandardOutput = true;    // Any output, generated by application will be redirected back
                start.RedirectStandardError = true;     // Any error in standard output will be redirected back (for example exceptions)
                using (Process process = Process.Start(start))
                {
                    using (StreamReader reader = process.StandardOutput)
                    {
                        string result = process.StandardError.ReadToEnd();
                        if (result == null || result == "")
                        {
                            result = reader.ReadToEnd();
                        }
                        return result;
                    }
                }
            }
        }
    }

    代码运行结果
    代码运行结果

    • 调用run_cmd相当于执行了cmd命令,所以就有了使用命令行运行python脚本的方式

    1.2. C# 调用 python3脚本

    假设C盘根目录下有如下脚本 test1.py

    import sys
    
    def add(a,b):
        return a+b
    
    if __name__ == "__main__":
        print(sys.argv[1])
        print("hello python")

    program.cs 中加入函数runPython,并修改main函数

    static void Main(string[] args)
    {
        Program p = new Program();
        //string result = p.run_cmd("ping.exe", "8.8.8.8 -n 2");
        string result = p.runPython("C:\test1.py", ""Form C#:"");
        Console.WriteLine(result);
    
        Console.ReadKey();
    }
    
    
    public string runPython(string filename, string cmd)
    {
        string cmd1 = string.Format("{0} {1}", filename, cmd);
        return run_cmd("python.exe", cmd1);
    }

    代码运行结果
    代码运行结果

    1.3 C# 调用python3内的函数

    我们知道使用python -c可以直接执行python代码,所以合理构造语句就可以直接调用python脚本内的函数了:python -c "print('hello python')"
    若要调用脚本里的函数,常规写法为:

    import sys
    sys.path.append('c:\')
    import test1
    print(test1.add(3,4))

    缩成一行就是python -c "import sys;sys.path.append('c:\');import test1;print(test1.add(3,4))"

    program.cs 中加入函数runPyFunc,并修改main函数

            static void Main(string[] args)
            {
                Program p = new Program();
                //string result = p.run_cmd("ping.exe", "8.8.8.8 -n 2");
                //string result = p.runPython("C:\test.py", ""Form C#:"");
                string result = p.runPyFunc(@"C:\","test1","add","3,4");
                Console.WriteLine(result);
    
                Console.ReadKey();
            }
    
            public string runPyFunc(string path, string filename, string functionname, string parameter)
            {
                string cmd = string.Format("-c "import sys;sys.path.append('{0}');import {1};print({1}.{2}({3}))"", path, filename, functionname, parameter);
                return run_cmd("python.exe", cmd);
            }

    运行就可以得到结果“7”了

  • 相关阅读:
    你说什么都不队 实验七 团队作业3:团队项目需求分析与原型设计
    你说什么都不队 实验六团队作业2:小型医疗机构诊疗管理系统
    你说什么都不队 实验五 团队作业1:软件研发团队组建与软件案例分析
    Java并发编程中的设计模式解析(二)一个单例的七种写法
    Java并发编程之ThreadGroup
    基于JVM原理、JMM模型和CPU缓存模型深入理解Java并发编程
    Java并发编程之线程安全、线程通信
    Java并发编程中的设计模式解析(一)
    Java并发编程之线程生命周期、守护线程、优先级、关闭和join、sleep、yield、interrupt
    Java并发编程之线程创建和启动(Thread、Runnable、Callable和Future)
  • 原文地址:https://www.cnblogs.com/lantingg/p/9418307.html
Copyright © 2020-2023  润新知