.net获取本机公网IP地址示例
.net获取本机公网IP地址示例
发布时间:2016-12-29 来源:查字典编辑
摘要:代码很简单,直接看代码复制代码代码如下:usingSystem;usingSystem.Net;usingSystem.Text.Regul...

代码很简单,直接看代码

复制代码 代码如下:

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;

}

}

}

}

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新asp.net教程学习
热门asp.net教程学习
编程开发子分类