将多个进程的输出连接到 StreamReader

发布于 2024-12-02 00:57:42 字数 817 浏览 2 评论 0原文

我需要捕获三个进程的输出并将其作为 StreamReader 传递。这在 C# 中可能吗?

背景:我需要具有三个不同参数的另一个文件的输出,但我想处理“完整”输出(所有三个一起)以便在我的代码中进行后续处理。

我应该只调用该过程三次并循环处理输出吗?或者有更有效的方法吗?

目前,我正在这样做

if (String.IsNullOrEmpty(file))
{
    Process dsget;
    dsget = Process.Start("dsget", "group \"CN=COUNTRY_DE,DC=cms,DC=local\" -members");
    dsget.StartInfo.UseShellExecute = false;
    dsget.StartInfo.RedirectStandardOutput = true;
    dsget.Start();
    reader = dsget.StandardOutput;
}
else 
{
    reader = new StreamReader(file);
}
while ((line = reader.ReadLine()) != null)
{
    if (!line.Contains("CN"))
        continue;
    string username = line.Replace("\"", "").Split(',')[0].Split('=')[1];
    countryUsers.Add(username.ToUpperInvariant());
}

,但我还需要来自“dsget”的两个 COUNTRY_XX 组。

I need to capture the ouput of three processes and pass it as a StreamReader. Is this possible in C#?

Background: I need the output of another file with three different arguments, but I want to treat the "complete" output (all three together) for latter processing in my code.

Should I just call the process three times and process the output in a loop? Or is there a more efficient way?

Currently, I'm doing it like this

if (String.IsNullOrEmpty(file))
{
    Process dsget;
    dsget = Process.Start("dsget", "group \"CN=COUNTRY_DE,DC=cms,DC=local\" -members");
    dsget.StartInfo.UseShellExecute = false;
    dsget.StartInfo.RedirectStandardOutput = true;
    dsget.Start();
    reader = dsget.StandardOutput;
}
else 
{
    reader = new StreamReader(file);
}
while ((line = reader.ReadLine()) != null)
{
    if (!line.Contains("CN"))
        continue;
    string username = line.Replace("\"", "").Split(',')[0].Split('=')[1];
    countryUsers.Add(username.ToUpperInvariant());
}

But I need two more COUNTRY_XX-groups from "dsget".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

花辞树 2024-12-09 00:57:42

没有办法,只能调用该过程三次。但是您始终可以将流程调用代码放入接受参数作为输入并返回流程输出的方法中,这样您就不必重复代码。例如,

var info = new StringBuilder();
info.Append(InvokeProcess(argument1));
info.Append(InvokeProcess(argument2));
info.Append(InvokeProcess(argument3));

其中 InvokeProcess 或多或少是您已经给出的代码。

There is no other way but to call the process three times. But you can always put process invocation code into a method that accepts argument as input add return the process output so you don't have to repeat the code. For example,

var info = new StringBuilder();
info.Append(InvokeProcess(argument1));
info.Append(InvokeProcess(argument2));
info.Append(InvokeProcess(argument3));

where InvokeProcess is more or less the code that you have already given.

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