U3DC.COM | 优三帝研究院

Menu

自动获取外网ip地址

using System;
using System.Net;
using System.Text.RegularExpressions;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
try
{
WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.Default;
string response = client.UploadString("http://iframe.ip138.com/ipcity.asp", "");
Match mc = Regex.Match(response, @"location.href=""(.*)""");
if (mc.Success && mc.Groups.Count > 1)
{
response = client.UploadString(mc.Groups[1].Value, "");
string[] str1 = response.Split('[');
response = str1[1];
string[] str = response.Split(']');
response = str[0];
Console.Write(response);
}
}
catch (System.Exception e)
{
}
Console.Read();
}
}
}

打赏
— 于 共写了601个字
— 文内使用到的标签:

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据