• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

.net中c#获取本机IP地址实例代码

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

* 在使用前,一定要注意在头部加上引用:

using System.Net;

 

代码如下:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Net;
 5 using System.Text;
 6 
 7 namespace ConsoleApplication1
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             Console.Write(new Program().GetHostInfo());
14             Console.ReadLine();
15         }
16         //获取本地IP等信息
17         protected string GetHostInfo()
18         {
19             StringBuilder Info = new StringBuilder("");
20             IPAddress[] ipHost = Dns.GetHostAddresses(Dns.GetHostName());
21             Info.Append("本机名:");
22             Info.Append(Dns.GetHostName());
23             Info.Append(" -> ");
24             Info.Append("IP 地址:");
25             Info.Append(" -> ");
26             foreach (IPAddress address in ipHost)
27             {
28                 Info.Append(address.ToString());
29                 Info.Append(" >> ");
30             }
31             return Info.ToString();
32         }
33     }
34 }

 * 但是以上代码还不能满足 程序员的要求,想要的也许就是一个192.168.1.66这样的IP,所以需要进行过滤筛选,代码如下:

 

  1 using System;
  2 using System.Collections.Generic;
  3 using System.Linq;
  4 using System.Net;
  5 using System.Net.NetworkInformation;
  6 using System.Text;
  7 using System.Text.RegularExpressions;
  8 
  9 namespace ConsoleApplication1
 10 {
 11     class Program
 12     {
 13         static void Main(string[] args)
 14         {
 15             String sd = new Program().GetLocalIP();
 16             Console.WriteLine(sd);
 17             Console.ReadLine();
 18         }
 19         /// <summary>
 20         /// 获取本地IP等信息
 21         /// </summary>
 22         /// <returns></returns>
 23         private string GetLocalIP()
 24         {
 25             //本机IP地址 
 26             string strLocalIP = "";
 27             //得到计算机名 
 28             string strPcName = Dns.GetHostName();
 29             //得到本机IP地址数组 
 30             IPHostEntry ipEntry = Dns.GetHostEntry(strPcName);
 31             //遍历数组 
 32             foreach (var IPadd in ipEntry.AddressList)
 33             {
 34                 //判断当前字符串是否为正确IP地址 
 35                 if (IsRightIP(IPadd.ToString()))
 36                 {
 37                     //得到本地IP地址 
 38                     strLocalIP = IPadd.ToString();
 39                     //结束循环 
 40                     break;
 41                 }
 42             }
 43 
 44             //返回本地IP地址 
 45             return strLocalIP;
 46         }
 47         /// <summary>
 48         /// 判断是否为正确的IP地址 
 49         /// </summary>
 50         /// <param name="strIPadd">IP</param>
 51         /// <returns></returns>
 52         public static bool IsRightIP(string strIPadd)
 53         {
 54             //利用正则表达式判断字符串是否符合IPv4格式 
 55             if (Regex.IsMatch(strIPadd, @"^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$"))
 56             {
 57                 //根据小数点分拆字符串 
 58                 string[] ips = strIPadd.Split('.');
 59                 if (ips.Length == 4 || ips.Length == 6)
 60                 {
 61                     //如果符合IPv4规则 
 62                     if (System.Int32.Parse(ips[0]) < 256 && System.Int32.Parse(ips[1]) < 256 & System.Int32.Parse(ips[2]) < 256 & System.Int32.Parse(ips[3]) < 256)
 63                     {
 64                         if(IsPingIP(strIPadd))
 65                             //正确 
 66                             return true;
 67                         else
 68                             //错误 
 69                             return false;
 70                     }
 71                         
 72                     //如果不符合 
 73                     else
 74                         //错误 
 75                         return false;
 76                 }
 77                 else
 78                     //错误 
 79                     return false;
 80             }
 81             else
 82                 //错误 
 83                 return false;
 84         }
 85         /// <summary>
 86         /// 尝试Ping指定IP 是否能够Ping通 
 87         /// </summary>
 88         /// <param name="strIP">IP</param>
 89         /// <returns></returns>
 90         public static bool IsPingIP(string strIP)
 91         {
 92             try
 93             {
 94                 //创建Ping对象 
 95                 Ping ping = new Ping();
 96                 //接受Ping返回值 
 97                 PingReply reply = ping.Send(strIP, 1000);
 98                 //Ping通 
 99                 return true;
100             }
101             catch
102             {
103                 //Ping失败 
104                 return false;
105             }
106         }
107     }
108 }
点我看代码~

 * 参考:http://www.111cn.net/net/160/47427.htm


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
【C#】强类型DataSet实现登录次数限制发布时间:2022-07-10
下一篇:
C#的三大特性发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap