我需要生成一个作为控制台应用程序的子进程,并捕获其输出。
我为方法编写了以下代码:
string retMessage = String.Empty;
ProcessStartInfo startInfo = new ProcessStartInfo();
Process p = new Process();
startInfo.CreateNoWindow = true;
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardInput = true;
startInfo.UseShellExecute = false;
startInfo.Arguments = command;
startInfo.FileName = exec;
p.StartInfo = startInfo;
p.Start();
p.OutputDataReceived += new DataReceivedEventHandler
(
delegate(object sender, DataReceivedEventArgs e)
{
using (StreamReader output = p.StandardOutput)
{
retMessage = output.ReadToEnd();
}
}
);
p.WaitForExit();
return retMessage;
但是,这不会返回任何内容。我不相信OutputDataReceived
事件被回调,或者WaitForExit()
命令可能阻塞线程,所以它永远不会回调。
有什么建议吗?
编辑:看起来我对回调太努力了。正在做:
return p.StandardOutput.ReadToEnd();
似乎工作正常。