この質問は重複しているように見えるかもしれません。提案されたすべての解決策を試しましたが、無駄に、このコードを使用してPythonスクリプト出力をリダイレクトしたいと思います。
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "python.exe";
proc.StartInfo.Arguments = Application.StartupPath.Replace("\\bin\\Debug", "") + "\\scripts\\test.py";
proc.OutputDataReceived += OutputDataReceived;
proc.ErrorDataReceived += ErrorDataReceived;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
proc.Start();
//proc.WaitForExit();
StringBuilder q = new StringBuilder();
while (!proc.HasExited)
{
q.Append(proc.StandardOutput.ReadToEnd());
}
string r = q.ToString();
r = proc.StandardOutput.ReadToEnd();
MessageBox.Show(r);
}
private void OutputDataReceived(object sender, DataReceivedEventArgs args)
{
//textOutput.Text += args.Data;
MessageBox.Show(args.Data);
}
Pythonスクリプトには、print "hello test"
出力のバッファリングを解除しようとしましたが、無駄に含まれています。
助けてください。
VS 2010 .NET 4.0、Python 2.7、winXPsp3を使用しています。