在 C# 中重定向控制台时出现问题
我正在使用我使用的控制台应用程序构建 GUI,我正在尝试使用 C# Process 和 RedirectStandardInput/Error/Output。
问题是,当我重定向任何内容时,控制台应用程序停止打印数据,我只重定向了 stdin 并观察了控制台应用程序窗口本身,什么也没有,我重定向了 stdin、out 和 err,并且我的程序没有收到任何数据。
这是我测试的唯一一个不能使用标准重定向的应用程序,这是一个实现问题吗?
代码:
fmproc = new Process();
fmproc.StartInfo.FileName = @"fm.exe";
fmproc.StartInfo.Arguments = "";
fmproc.StartInfo.UseShellExecute = false;
fmproc.StartInfo.CreateNoWindow = false;
fmproc.StartInfo.RedirectStandardInput = true;
fmproc.StartInfo.RedirectStandardError = true;
fmproc.StartInfo.RedirectStandardOutput = true;
fmproc.Start();
fmproc.StandardOutput.ReadLine();
i am building a GUI over an console application that i use, i'm trying to use C# Process and RedirectStandardInput/Error/Output.
The problem is when i redirect anything the console applications stops printing data, i've redirected only stdin and watched the console application window itself, nothing, i've redirected stdin, out and err and no data is received by my program.
This is the only application i tested that doesn't work with Std redirection, is it an implementation issue?
Code:
fmproc = new Process();
fmproc.StartInfo.FileName = @"fm.exe";
fmproc.StartInfo.Arguments = "";
fmproc.StartInfo.UseShellExecute = false;
fmproc.StartInfo.CreateNoWindow = false;
fmproc.StartInfo.RedirectStandardInput = true;
fmproc.StartInfo.RedirectStandardError = true;
fmproc.StartInfo.RedirectStandardOutput = true;
fmproc.Start();
fmproc.StandardOutput.ReadLine();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你可以尝试:
而不是 ReadLine();当然,您可能想对输出字符串做一些更有趣的事情 - 但我只是按照您的示例代码进行操作。
Perhaps you could try:
Rather than the ReadLine(); Of course you might want to do something more interesting with the output string - but I'm just following your example code.