我在针对.Net framework 3.5的程序中有一个System.Diagnostics.Process对象
我已重定向StandardOutput
和StandardError
管道,并且我正在异步接收来自它们的数据。我还为Exited事件设置了一个事件处理程序。
一旦我打电话给Process.Start()
,我想在等待举办活动的时候去做其他工作。
不幸的是,对于返回大量信息的进程,似乎在最后一次OutputDataReceived
事件之前触发了Exited事件。
我如何知道收到最后一次OutputDataReceived
的时间?理想情况下,我希望Exited
事件成为我收到的最后一个事件。
以下是一个示例程序:
using System;
using System.Diagnostics;
using System.Threading;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string command = "output.exe";
string arguments = " whatever";
ProcessStartInfo info = new ProcessStartInfo(command, arguments);
// Redirect the standard output of the process.
info.RedirectStandardOutput = true;
info.RedirectStandardError = true;
// Set UseShellExecute to false for redirection
info.UseShellExecute = false;
Process proc = new Process();
proc.StartInfo = info;
proc.EnableRaisingEvents = true;
// Set our event handler to asynchronously read the sort output.
proc.OutputDataReceived += new DataReceivedEventHandler(proc_OutputDataReceived);
proc.ErrorDataReceived += new DataReceivedEventHandler(proc_ErrorDataReceived);
proc.Exited += new EventHandler(proc_Exited);
proc.Start();
// Start the asynchronous read of the sort output stream. Note this line!
proc.BeginOutputReadLine();
proc.BeginErrorReadLine();
proc.WaitForExit();
Console.WriteLine("Exited (Main)");
}
static void proc_Exited(object sender, EventArgs e)
{
Console.WriteLine("Exited (Event)");
}
static void proc_ErrorDataReceived(object sender, DataReceivedEventArgs e)
{
Console.WriteLine("Error: {0}", e.Data);
}
static void proc_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
Console.WriteLine("Output data: {0}", e.Data);
}
}
}
运行此程序时,您会注意到“退出(事件)”出现在输出中的完全可变位置。您可能需要运行几次,显然,您需要将“output.exe”替换为您选择的产生大量输出的程序。
那么,问题又是:我如何知道最后一次收到OutputDataReceived
的时间?理想情况下,我希望Exited
事件成为我收到的最后一个事件。
答案 0 :(得分:26)
答案是e.Data
will be set to null
:
static void proc_ErrorDataReceived(object sender, DataReceivedEventArgs e)
{
if( e.Data == null ) _exited.Set();
}
答案 1 :(得分:0)
如果e.Data设置为null,则会更舒适,但实际上,该值将为空字符串。请注意,第一个值也可以是Empty string。真正的答案是,一旦收到除Empty字符串以外的其他值,然后寻找下一个Empty字符串。我正在使用Visual Studio 2019。