如何从python重定向输出

时间:2016-09-28 16:27:57

标签: c# ironpython

我是IronPython的新手。我想在我的C#应用​​程序中使用它。基本上,我正在尝试从IronPython复制所有stdout并将其添加到类似字符串的内容中。我已经按照本教程 - https://blogs.msdn.microsoft.com/seshadripv/2008/07/08/how-to-redirect-output-from-python-using-the-dlr-hosting-api/

但是,MemoryStream对象始终为空。

可能出现什么问题?

1 个答案:

答案 0 :(得分:0)

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中的代码,它的运行没有错误。