我在我的C#文件中运行了一个用于WPF的Python进程:
ProcessStartInfo StartInfo = new ProcessStartInfo(@"python ", location);
StartInfo.UseShellExecute = false;
StartInfo.CreateNoWindow = true;
StartInfo.RedirectStandardOutput = true;
StartInfo.RedirectStandardError = true;
try
{
p.StartInfo = StartInfo;
p.EnableRaisingEvents = true;
p.OutputDataReceived += new DataReceivedEventHandler(OnDataReceived);
p.ErrorDataReceived += new DataReceivedEventHandler(OnDataReceived);
p.Exited += new EventHandler(OnProcessExit);
p.Start();
p.BeginOutputReadLine();
p.BeginErrorReadLine();
}
catch (Exception exc)
{
Console.Write(exc);
}
以后:
private void OnDataReceived(object sender, DataReceivedEventArgs e)
{
if (e.Data != null)
{
torOut = e.Data;
Console.WriteLine(torOut);
}
}
我的Python程序每秒打印多条消息。当我运行它时,只显示一些输出;例如,print "message"
可能被调用50次,并且只有在第50次之后,所有50条消息才会被批量出现。
我的方法是否存在问题,或者读取StandardOutput的速度特别慢/间歇?
答案 0 :(得分:0)
如果有人有类似的问题,我最终解决了它。在需要输出任何时间后添加以下内容:
import sys
sys.stdout.flush()