如何重定向 python 的输出
How to redirect output from python
我是 IronPython 的新手。我想在我的 C# 应用程序中使用它。基本上,我正在尝试从 IronPython 复制所有标准输出并将其以类似字符串的形式获取。我已遵循本教程 - https://blogs.msdn.microsoft.com/seshadripv/2008/07/08/how-to-redirect-output-from-python-using-the-dlr-hosting-api/
但是,MemoryStream 对象始终为空。
可能会出什么问题?
API 个脚本有变化。
要在 c# 中使用 IronPython:
1) 安装 Nuget 包
Install-Package IronPython.StdLib
Install-Package IronPython
2) 要运行您的演示,请修改您的代码:
// ScriptRuntime runTime = ScriptRuntime.Create(); //create is not available
ScriptRuntime runTime = ScriptRuntime.CreateFromConfiguration();
3) 使用的程序集:
using IronPython.Hosting;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;
4) 将以下内容添加到 App.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="microsoft.scripting" type="Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting"/>
</configSections>
<microsoft.scripting>
<languages>
<language names="IronPython;Python;py" extensions=".py" displayName="IronPython" type="IronPython.Runtime.PythonContext, IronPython"/>
</languages>
我在 vs 2013 中测试了代码,它运行没有错误。
我是 IronPython 的新手。我想在我的 C# 应用程序中使用它。基本上,我正在尝试从 IronPython 复制所有标准输出并将其以类似字符串的形式获取。我已遵循本教程 - https://blogs.msdn.microsoft.com/seshadripv/2008/07/08/how-to-redirect-output-from-python-using-the-dlr-hosting-api/
但是,MemoryStream 对象始终为空。
可能会出什么问题?
API 个脚本有变化。
要在 c# 中使用 IronPython:
1) 安装 Nuget 包
Install-Package IronPython.StdLib
Install-Package IronPython
2) 要运行您的演示,请修改您的代码:
// ScriptRuntime runTime = ScriptRuntime.Create(); //create is not available
ScriptRuntime runTime = ScriptRuntime.CreateFromConfiguration();
3) 使用的程序集:
using IronPython.Hosting;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;
4) 将以下内容添加到 App.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="microsoft.scripting" type="Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting"/>
</configSections>
<microsoft.scripting>
<languages>
<language names="IronPython;Python;py" extensions=".py" displayName="IronPython" type="IronPython.Runtime.PythonContext, IronPython"/>
</languages>
我在 vs 2013 中测试了代码,它运行没有错误。