C#获取本机IP地址(ipv4)
程序员文章站
2023-11-25 15:22:40
获取本机所有ip地址:
这些地址是包含所有网卡(虚拟网卡)的ipv4和ipv6地址。
string name = dns.gethostname();...
获取本机所有ip地址:
这些地址是包含所有网卡(虚拟网卡)的ipv4和ipv6地址。
string name = dns.gethostname(); ipaddress[] ipadrlist = dns.gethostaddresses(name);
获取本机所有ipv4地址:
string name = dns.gethostname(); ipaddress[] ipadrlist = dns.gethostaddresses(name); foreach (ipaddress ipa in ipadrlist) { if (ipa.addressfamily == addressfamily.internetwork) console.writeline(ipa.tostring()); }
若要单单获取ipv4地址,可以用ipadress.addressfamily 属性判断:对于 ipv4,返回 internetwork;对于 ipv6,返回 internetworkv6。
然而如果本机可能有多个ipv4的地址,那如何获取访问默认网关时使用的网卡ip呢。在csdn论坛找到了大神的方法,用的是查询本机路由表。
获取本机正在使用的ipv4地址(访问互联网的ip)
可别小看,还是有很多需要考虑的:
1.一个电脑有多个网卡,有线的、无线的、还有vmare虚拟的两个网卡。
2.就算只有一个网卡,但是该网卡配置了n个ip地址.其中还包括ipv6地址。
/// <summary> /// 获取当前使用的ip /// </summary> /// <returns></returns> public static string getlocalip() { string result = runapp("route", "print",true); match m = regex.match(result, @"0.0.0.0\s+0.0.0.0\s+(\d+.\d+.\d+.\d+)\s+(\d+.\d+.\d+.\d+)"); if (m.success) { return m.groups[2].value; } else { try { system.net.sockets.tcpclient c = new system.net.sockets.tcpclient(); c.connect("www.baidu.com", 80); string ip = ((system.net.ipendpoint)c.client.localendpoint).address.tostring(); c.close(); return ip; } catch (exception) { return null; } } } /// <summary> /// 获取本机主dns /// </summary> /// <returns></returns> public static string getprimarydns() { string result = runapp("nslookup", "",true); match m = regex.match(result, @"\d+\.\d+\.\d+\.\d+"); if (m.success) { return m.value; } else { return null; } } /// <summary> /// 运行一个控制台程序并返回其输出参数。 /// </summary> /// <param name="filename">程序名</param> /// <param name="arguments">输入参数</param> /// <returns></returns> public static string runapp(string filename, string arguments,bool recordlog) { try { if (recordlog) { trace.writeline(filename + " " + arguments); } process proc = new process(); proc.startinfo.filename = filename; proc.startinfo.createnowindow = true; proc.startinfo.arguments = arguments; proc.startinfo.redirectstandardoutput = true; proc.startinfo.useshellexecute = false; proc.start(); using (system.io.streamreader sr = new system.io.streamreader(proc.standardoutput.basestream, encoding.default)) { //string txt = sr.readtoend(); //sr.close(); //if (recordlog) //{ // trace.writeline(txt); //} //if (!proc.hasexited) //{ // proc.kill(); //} //上面标记的是原文,下面是我自己调试错误后自行修改的 thread.sleep(100); //貌似调用系统的nslookup还未返回数据或者数据未编码完成,程序就已经跳过直接执行 //txt = sr.readtoend()了,导致返回的数据为空,故睡眠令硬件反应 if (!proc.hasexited) //在无参数调用nslookup后,可以继续输入命令继续操作,如果进程未停止就直接执行 { //txt = sr.readtoend()程序就在等待输入,而且又无法输入,直接掐住无法继续运行 proc.kill(); } string txt = sr.readtoend(); sr.close(); if (recordlog) trace.writeline(txt); return txt; } } catch (exception ex) { trace.writeline(ex); return ex.message; } }
另有一种方法通过用ipconfig来获取:
private void getip() { process cmd = new process(); cmd.startinfo.filename = "ipconfig.exe";//设置程序名 cmd.startinfo.arguments = "/all"; //参数 //重定向标准输出 cmd.startinfo.redirectstandardoutput = true; cmd.startinfo.redirectstandardinput = true; cmd.startinfo.useshellexecute = false; cmd.startinfo.createnowindow = true;//不显示窗口(控制台程序是黑屏) //cmd.startinfo.windowstyle = processwindowstyle.hidden;//暂时不明白什么意思 /* 收集一下 有备无患 关于:processwindowstyle.hidden隐藏后如何再显示? hwndwin32host = win32native.findwindow(null, win32exinfo.windowsname); win32native.showwindow(hwndwin32host, 1); //先findwindow找到窗口后再showwindow */ cmd.start(); string info = cmd.standardoutput.readtoend(); cmd.waitforexit(); cmd.close(); textbox1.appendtext(info); }
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
下一篇: Sql Server中的非聚集索引详细介