【发布时间】:2017-08-11 20:29:00
【问题描述】:
我正在使用这段代码,但是当我停止进程时,它没有得到 ping 统计信息:
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "ping";
p.StartInfo.Arguments = "-c " + count + " -i " + interval + " -s " + buffer + " -W " + timeout + " " + address;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
string readData = "";
DateTime dt = DateTime.Now.AddSeconds(5);
if (p.Start())
{
Scanner scanner = new Scanner(p.StandardOutput.BaseStream);
while (scanner.HasNextLine)
{
readData = scanner.NextLine().ToString();
Console.WriteLine(readData.ToString());
if (!string.IsNullOrEmpty(readData) && !readData.StartsWith("---"))
{
Match M = Regex.Match(readData, @"^[\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
if(dt > DateTime.Now)
{
p.StandartInput.Write("\x3");
}
}
else
{
Match M1 = Regex.Match(readData, @"^rtt [^0-9]*([\d][^\/]+)\/([^\/]+)\/([^\/]+)\/([^ ]+) ms$");
if (M1 != null && M1.Success)
{
float avgPingTime = 0;
float maxPingTime = 0;
float minPingTime = 0;
string minPingString = M1.Groups[1].Value;
string avgPingString = M1.Groups[2].Value;
string maxPingString = M1.Groups[3].Value;
// Now parse that value
float.TryParse(minPingString, System.Globalization.NumberStyles.Float, System.Globalization.NumberFormatInfo.InvariantInfo, out minPingTime);
float.TryParse(avgPingString, System.Globalization.NumberStyles.Float, System.Globalization.NumberFormatInfo.InvariantInfo, out avgPingTime);
float.TryParse(maxPingString, System.Globalization.NumberStyles.Float, System.Globalization.NumberFormatInfo.InvariantInfo, out maxPingTime);
Console.WriteLine(String.Format("Min Time : {0} , AVG {2} ms, Max Time {1}", minPingTime, maxPingTime, avgPingTime));
}
}
}
}
}
不使用
if(dt > DateTime.Now)
{
p.StandartInput.Write("\x3");
}
结果显示如下:
64 bytes from 8.8.8.8: icmp_req=1 ttl=46 time=13.9 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=46 time=13.9 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=46 time=13.9 ms
--- 8.8.8.8 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 3016ms
rtt min/avg/max/mdev = 13.910/13.926/13.951/0.010 ms
但如果我使用p.StandartInput.Write("\x3"); 停止ping,它永远不会进入statistics 部分,它挂在序列1:64 bytes from 8.8.8.8: icmp_req=1 ttl=46 time=13.9 ms 并且不要继续阅读,如何显示@ 987654328@ 停止ping 进程后?
换句话说,我的问题是当用户想要停止 ping 时,它应该在用于 ping 的特定时间内显示 statistics...
更新
我已经实现了p.StandartInput.Write("/x3");,它会中断 ping 过程,但它不显示统计信息,只是挂在那里。
【问题讨论】:
-
写一个
Ctrl-C到你的std输入流,十六进制是3,所以Write("\x3") -
我已经尝试在
adb shell ping -c 3 8.8.8.8中使用 CTRL+C 但它只是立即停止,它不显示统计部分... -
刚试了一下,它会生成统计数据行...因为您是通过
adb进行测试的,实际上首先在adb shell中运行shell,然后运行ping,然后运行Ctrl-C,您就是Ctrl-C/中止 adb 进程而不是 ping 进程 -
看来,如果您调用
p.Exit(),StandardOutput也会在本地关闭。尝试在循环之前定义Exited。如果您的进程被杀死,则会引发此事件。尝试获取进程的最新输出(作为sender传递给事件)。 -
adb shell,然后是ping 8.8.8.8,然后是Ctrl-C以中止ping,并且将显示统计信息,它也适用于进程,因为我在一对夫妇中使用ping我的应用程序......
标签: c# android xamarin mono xamarin.android