C#WPF进程获取StandardOutput是间歇性的
本文关键字:进程 获取 StandardOutput C#WPF | 更新日期: 2023-09-27 17:57:33
我在WPF:的C#文件中运行了一个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的读取速度是否特别慢/间歇性?
如果有人遇到类似的问题,我最终解决了。在需要任何时间输出后添加以下内容:
import sys
sys.stdout.flush()