用C#调用python脚本,并将python得到的结果传入C#程序中
时间: 2023-08-10 18:12:01 浏览: 183
C#调用Python脚本的简单示例
5星 · 资源好评率100%
可以使用C#的Process类来调用Python脚本,并通过标准输出流获取Python程序的结果。下面是一个示例代码:
```csharp
using System;
using System.Diagnostics;
class Program {
static void Main(string[] args) {
ProcessStartInfo start = new ProcessStartInfo();
start.FileName = "python"; // 指定python解释器的路径
start.Arguments = "script.py"; // 指定要执行的Python脚本路径
start.UseShellExecute = false;
start.RedirectStandardOutput = true;
using (Process process = Process.Start(start)) {
using (StreamReader reader = process.StandardOutput) {
string result = reader.ReadToEnd(); // 读取Python程序的输出结果
Console.WriteLine(result); // 输出结果
}
}
}
}
```
在上面的代码中,我们指定了Python解释器的路径和要执行的Python脚本的路径。然后设置了`RedirectStandardOutput`属性为`true`,这样就可以通过`StandardOutput`属性读取Python程序的输出结果。
最后,我们通过`Console.WriteLine`方法输出Python程序的结果。你可以将结果传递给其他的C#程序,进行后续的操作。
阅读全文