首页 > 学院 > 开发设计 > 正文

.net获取本机公网IP代码

2019-11-14 13:37:54
字体:
来源:转载
供稿:网友
using System;using System.Net;using System.Text.RegularExPRessions;namespace Keleyi.Com{    public class GetInternetip    {        public static string GetIP()        {            using (var webClient = new WebClient())            {                try                {                    var temp = webClient.DownloadString("http://iframe.ip138.com/ic.asp");                    var ip = Regex.Match(temp, @"/[(?<ip>/d+/./d+/./d+/./d+)]").Groups["ip"].Value;                    return !string.IsNullOrEmpty(ip) ? ip : null;                }                catch (Exception ex)                {                    return ex.Message;                }            }        }    }}

  


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表