public static string GetIP()
{
using (var webClient = new WebClient())
{
try{
webClient.Credentials = CredentialCache.DefaultCredentials;
byte[] pageDate = webClient.DownloadData("http://pv.sohu.com/cityjson?ie=utf-8");
String ip = Encoding.UTF8.GetString(pageDate);
webClient.Dispose();
Match rebool = Regex.Match(ip, @"\d{2,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}");
return rebool.Value;
}
catch (Exception e)
{
return "";
}
}
}
C#自动获取本机外网ip
最新推荐文章于 2025-02-12 09:01:51 发布