我有一个小型控制台应用程序,我想在C#中读取输出。因此我创建了此代码段。命令提示符将打开,但不显示任何内容。
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
process.StartInfo.FileName = DirectoryPath + "Test.exe";
process.StartInfo.Arguments = "-showAll";
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
process.WaitForExit(2000);
String strOutput = process.StandardOutput.ReadToEnd();
如果我删除UseShellExecute
,RedirectStandardOutput
和最后一行,则会打开命令提示符并显示Test.exe
,但我需要输出为String,因此我必须使用这些要读取StandardOutput
我还尝试将超时设置为2秒(process.WaitForExit(2000)
),但空命令提示符在2秒后没有关闭。
如果我在调试模式下手动关闭空命令提示符,则变量strOutput具有我请求的信息。
答案 0 :(得分:1)
为了避免死锁,您必须在等待退出之前读取输出流。所以试试:
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
process.StartInfo.FileName = DirectoryPath + "Test.exe";
process.StartInfo.Arguments = "-showAll";
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
String strOutput = process.StandardOutput.ReadToEnd();
process.WaitForExit();