码迷,mamicode.com
首页 > 其他好文 > 详细

获取本机IP

时间:2018-05-18 14:00:29      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:转换   ipaddr   cal   127.0.0.1   []   获取   pad   ESS   ++   

public static String GetLocalIp()
{
  String[] Ips = GetLocalIpAddress();

  foreach (String ip in Ips) if (ip.StartsWith("10.80.")) return ip;
  foreach (String ip in Ips) if (ip.Contains(".")) return ip;

  return "127.0.0.1";
}
public static String[] GetLocalIpAddress()
{
  string hostName = Dns.GetHostName(); //获取主机名称
  IPAddress[] addresses = Dns.GetHostAddresses(hostName); //解析主机IP地址

  string[] IP = new string[addresses.Length]; //转换为字符串形式
  for (int i = 0; i < addresses.Length; i++) IP[i] = addresses[i].ToString();

  return IP;
}

获取本机IP

标签:转换   ipaddr   cal   127.0.0.1   []   获取   pad   ESS   ++   

原文地址:https://www.cnblogs.com/judes/p/9055482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!