在 C# 中重定向控制台时出现问题

发布于 2024-11-29 17:25:54 字数 653 浏览 2 评论 0原文

我正在使用我使用的控制台应用程序构建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-12-06 17:25:54

也许你可以尝试:

fmproc.StandardOutput.ReadToEnd();
fmproc.WaitForExit();

而不是 ReadLine();当然,您可能想对输出字符串做一些更有趣的事情 - 但我只是按照您的示例代码进行操作。

Perhaps you could try:

fmproc.StandardOutput.ReadToEnd();
fmproc.WaitForExit();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文