在百度了很多方法后,采用了淘宝api方法,终于奏效!
第一步:需要 using Newtonsoft.Json;
引用该框架,需要下载 Newtonsoft.Json.zip
下载地址如下:http://www.zhating.cn/index.php/post/90.html
第二步:解压至dug文件夹,右键解决方案-添加-引用-浏览,双击添加 Newtonsoft.Json.dll(引用该dll可以参照http://www.zhating.cn/index.php/post/66.html )
上述步骤做好后,添加如下代码
第三步:主要代码如下:
public static string GetIPCitys(string strIP)
{
try
{
string Url = "http://ip.taobao.com/service/getIpInfo.php?ip=" + strIP + "";
System.Net.WebRequest wReq = System.Net.WebRequest.Create(Url);
wReq.Timeout = 5000;
System.Net.WebResponse wResp = wReq.GetResponse();