使用C#调用外部Ping命令获取网络连接情况
2024-07-21 02:19:17
供稿:网友
以前在玩windows 98的时候,几台电脑连起来,需要测试网络连接是否正常,经常用的一个命令就是ping.exe。感觉相当实用。
现在 .net为我们提供了强大的功能来调用外部工具,并通过重定向输入、输出获取执行结果,下面就用一个例子来说明调用ping.exe命令实现网络的检测,希望对.net初学者有所帮助。
首先,我们用使用process类,来创建独立的进程,导入system.diagnostics,
using system.diagnostics;
实例一个process类,启动一个独立进程
process p = new process();
process类有一个startinfo属性,这个是processstartinfo类,包括了一些属性和方法,
下面我们用到了他的几个属性:
设定程序名
p.startinfo.filename = "cmd.exe";
关闭shell的使用
p.startinfo.useshellexecute = false;
重定向标准输入
p.startinfo.redirectstandardinput = true;
重定向标准输出
p.startinfo.redirectstandardoutput = true;
重定向错误输出
p.startinfo.redirectstandarderror = true;
设置不显示窗口
p.startinfo.createnowindow = true;
上面几个属性的设置是比较关键的一步。
既然都设置好了那就启动进程吧,
p.start();
输入要执行的命令,这里就是ping了,
p.standardinput.writeline("ping -n 1 192.192.132.229");
p.standardinput.writeline("exit");
从输出流获取命令执行结果,
string strrst = p.standardoutput.readtoend();
在本机测试得到如下结果:
"microsoft windows 2000 [version 5.00.2195]/r/n(c) 版权所有 1985-2000 microsoft corp./r/n/r/nd://himuraz//csharpproject//zz//consoletest//bin//debug>ping -n 1 192.192.132.231/r/n/r/r/npinging 192.192.132.231 with 32 bytes of data:/r/r/n/r/r/nreply from 192.192.132.231: bytes=32 time<10ms ttl=128/r/r/n/r/r/nping statistics for 192.192.132.231:/r/r/n packets: sent = 1, received = 1, lost = 0 (0% loss),/r/r/napproximate round trip times in milli-seconds:/r/r/n minimum = 0ms, maximum = 0ms, average = 0ms/r/r/n/r/nd://himuraz//csharpproject//zz//consoletest//bin//debug>exit/r/n"
有了输出结果,那还有什么好说的,分析strrst字符串就可以知道网络的连接情况了。
下面是一个完整的程序,当然对ping.exe程序执行的结果不全,读者可以进一步修改
完整代码如下:
using system;
using system.diagnostics;
namespace zz
{
class zzconsole
{
[stathread]
static void main(string[] args)
{
string ip = "192.192.132.229";
string strrst = cmdping(ip);
console.writeline(strrst);
console.readline();
}
private static string cmdping(string strip)
{
process p = new process();
p.startinfo.filename = "cmd.exe";
p.startinfo.useshellexecute = false;
p.startinfo.redirectstandardinput = true;
p.startinfo.redirectstandardoutput = true;
p.startinfo.redirectstandarderror = true;
p.startinfo.createnowindow = true;
string pingrst;
p.start();
p.standardinput.writeline("ping -n 1 "+strip);
p.standardinput.writeline("exit");
string strrst = p.standardoutput.readtoend();
if(strrst.indexof("(0% loss)")!=-1)
pingrst = "连接";
else if( strrst.indexof("destination host unreachable.")!=-1)
pingrst = "无法到达目的主机";
else if(strrst.indexof("request timed out.")!=-1)
pingrst = "超时";
else if(strrst.indexof("unknown host")!=-1)
pingrst = "无法解析主机";
else
pingrst = strrst;
p.close();
return pingrst;
}
}
}
总结,这里就是为了说明一个问题,不但是ping命令,只要是命令行程序或者是dos内部命令,我们都可以用上面的方式来执行它,并获取相应的结果,并且这些程序的执行过程不会显示出来,如果需要调用外部程序就可以嵌入到其中使用了。