C#实时显示Process的输出

前端之家收集整理的这篇文章主要介绍了C#实时显示Process的输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Redirect console output to textbox in separate program5个
> C# – Capturing Windows Application Output3个
在C#中,我正在启动第三方应用程序,需要2-3个小时才能完成.我需要Process的输出实时写入控制台.我已经从微软的网站上研究了BeginOutputReadLine()和RedirectStandardOutput,但我的代码仍然没有用.

目前我的代码显示进程完成时的输出.我不知道它出了什么问题.

static void Main(string[] args)
{
  Process process;
  process = new Process();
  process.StartInfo.FileName = "C:\\ffmbc\\ffmbc.exe";
  process.StartInfo.Arguments = "-i \\\\dssp-isi-t\\TMD\\B002C010_130520_R2R7.2398v5.mxf -an -vcodec libx264 -level 4.1 -preset veryslow -tune film -x264opts bluray-compat=1:weightp=0:bframes=3:nal-hrd=vbr:vbv-maxrate=40000:vbv-bufsize=30000:keyint=24:b-pyramid=strict:slices=4:aud=1:colorprim=bt709:transfer=bt709:colormatrix=bt709:sar=1/1:ref=4 -b 30M -bt 30M -threads 0 -pass 1 -y \\\\dss-isi-t\\MTPO_Transfer\\dbay\\B002C010_130520_R2R7.2398v5.mxf.h264";
  process.StartInfo.UseShellExecute = false;
  process.StartInfo.CreateNoWindow = true;
  process.StartInfo.RedirectStandardOutput = true;
  process.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
  process.StartInfo.RedirectStandardInput = true;
  process.Start();
  process.BeginOutputReadLine();
  process.WaitForExit();
  process.Close();
}

private static void OutputHandler(object sendingProcess,DataReceivedEventArgs outLine)
{
  string line;
  line = (outLine.Data.ToString());
  Console.WriteLine(line);
}

解决方法

这条线
process.WaitForExit();

将导致当前程序等待,直到给定的进程完成.这肯定不是你想要的;你可能想要启动它,让它以异步方式运行,然后让它告诉你它什么时候结束.为此,您将需要使用process.Exited事件.

原文链接:https://www.f2er.com/csharp/92407.html

猜你在找的C#相关文章