gpt4 book ai didi

c# - 如何实时读取输出并在需要时在特定时间停止

转载 作者:行者123 更新时间:2023-11-29 19:18:40 27 4
gpt4 key购买 nike

所以,我有这个工作代码来显示 System.Diagnostics.Process

的 ping 和统计数据
Process P = new Process();
P.StartInfo.FileName = "ping";
P.StartInfo.Arguments = "-c 3 8.8.8.8"; // Take 3 samples to 8.8.8.8
P.StartInfo.UseShellExecute = false;
P.StartInfo.RedirectStandardOutput = true;

string readData = "";
if (P.Start())
readData = P.StandardOutput.ReadToEnd(); // This will also wait for the process to at least close its stdout
Console.Write(readData.ToString()); // Doing this, you will see how the

我以这种方式处理字符串:

List<string> Lines = new List<string>(readData.Replace("\r\n", "\n").Split('\n'));

while (Lines.Count > 0 && !Lines[0].StartsWith("---"))
{
Match M = Regex.Match(Lines[0], @"^[\d]+ bytes from ([^:]+): [^ ]+ ttl=([\d]+) time=([^ ]+) ms");

if (M != null && M.Success)
{
string IP = M.Groups[1].Value;
string TTL = M.Groups[2].Value;
string timeStr = M.Groups[3].Value;

Console.WriteLine(String.Format("Ping to {0} took {2} ms with a ttl of {1}", IP, TTL, timeStr));
// Parsing the timeStr will work the same way as above
}

Lines.RemoveAt(0);
}

ReadToEnd(); 等待标准输出关闭,然后处理字符串。

我的问题是如何实时处理每行的字符串行,以及如何在一定时间内停止处理,最后也得到统计信息。

最佳答案

System.IO.StreamReader 有一个名为 ReadLine 的方法,您可以使用它:

if (P.Start()){
DateTime endTime = DateTime.Now.AddSeconds(5);
while(!P.HasExited){
readData = P.StandardOutput.ReadLine(); // This will wait for the next line to be output completely

Match M = Regex.Match(Lines[0], @"^[\d]+ bytes from ([^:]+): [^ ]+ ttl=([\d]+) time=([^ ]+) ms");

if (M != null && M.Success)
{
string IP = M.Groups[1].Value;
string TTL = M.Groups[2].Value;
string timeStr = M.Groups[3].Value;

Console.WriteLine(String.Format("Ping to {0} took {2} ms with a ttl of {1}", IP, TTL, timeStr));
}


if (endTime > DateTime.Now)
P.Kill();
}
}

我引入了一个名为 endTime 的变量,它会在未来 5 秒的时间进行初始化,当达到该时间时,进程会被终止,导致循环终止,因为 P .HasExited 现在变为 true

关于c# - 如何实时读取输出并在需要时在特定时间停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42892207/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com