.net获取本机公网IP地址示例
本文导语: 代码很简单,直接看代码 代码如下:using System;using System.Net;using System.Text.RegularExpressions; namespace Keleyi.Com{ public class GetInternetIP { public static string GetIP() { using (var webClient = new WebClient()...
代码很简单,直接看代码
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, @"[(?d+.d+.d+.d+)]").Groups["ip"].Value;
return !string.IsNullOrEmpty(ip) ? ip : null;
}
catch (Exception ex)
{
return ex.Message;
}
}
}
}
}
您可能感兴趣的文章:
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。