我想在c#中获取执行的输出,并且我引用了this question。但我只在控制台上打印输出,但不存储在指定的字符串中。这是我的代码:`
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
//p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = "ffmpeg.exe";
p.StartInfo.Arguments = " -i 1.flv";
p.Start();
p.WaitForExit();
string output = p.StandardOutput.ReadToEnd();
Console.WriteLine(output);
Console.ReadLine();`
执行这些代码后,输出字符串仍为空。另外,如果我保留行p.StartInfo.CreateNoWindow = true;
,控制台上根本不会打印任何文字,为什么会这样?我以为该行只会停止创建一个新窗口。
答案 0 :(得分:1)
Move string output = p.StandardOutput.ReadToEnd();在里面等待退出。 如果数据已经退出,你将如何读取数据。
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
//p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = "ffmpeg.exe";
p.StartInfo.Arguments = " -i 1.flv";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
Console.WriteLine(output);
Console.ReadLine();`
答案 1 :(得分:0)
我会尝试以下方法:
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "ffmpeg.exe";
p.StartInfo.Arguments = " -i 1.flv";
p.Start();
while (!p.HasExited)
{
string output = p.StandardOutput.ReadToEnd();
}
我还建议您查看this example given in the MS documentation中的BeginReadOutputLine
方法。异步,即使您使用WaitForExit
,也会调用它。
这个简化版本是:
// Start the asynchronous read of the output stream.
p.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
p.EnableRaisingEvents = true;
p.BeginOutputReadLine();
p.Start();
p.WaitForExit();
p.Close();
private static void OutputHandler(object sendingProcess, DataReceivedEventArgs outLine)
{
// Collect the command output.
if (!String.IsNullOrEmpty(outLine.Data))
{
numOutputLines++;
// Add the text to the output
Console.WriteLine(Environment.NewLine +
"[" + numOutputLines.ToString() + "] - " + outLine.Data);
}
}
答案 2 :(得分:0)
切换这两行怎么样?
p.WaitForExit();
string output = p.StandardOutput.ReadToEnd();