C#根据IP地址查询所属地区(调用免费的IP查询接口)

ip-api.com接口(解析 json需要引入Newtonsoft.Json.dll ):

/// <summary>  
        /// 根据IP 获取物理地址  
        /// </summary>  
        /// <param name="ip">Ip地址</param>  
        /// <returns></returns>  
        public static string GetIpAddress(string ip)
        {
            string url = "http://ip-api.com/json/"+ip+"?lang=zh-CN";
            string result = "";
            WebRequest wrt = null;
            WebResponse wrp = null;
            try
            {
                wrt = WebRequest.Create(url);
                wrt.Credentials = CredentialCache.DefaultCredentials;

                wrp = wrt.GetResponse();
                StreamReader sr = new StreamReader(wrp.GetResponseStream(), Encoding.UTF8);
                //获取到的是Json数据
                string html = sr.ReadToEnd();

                //Newtonsoft.Json读取数据
                JObject obj = JsonConvert.DeserializeObject<JObject>(html);
                string city = obj["city"].ToString();
                string province = obj["regionName"].ToString();
                result = city.Equals(province) ? city : (province + city);
            }
            catch (Exception)
            {
            }
            finally
            {
                if (wrp != null)
                    wrp.Close();
                if (wrt != null)
                    wrt.Abort();
            }
            return result;
        }

126.net接口: 

/// <summary>  
        /// 根据IP 获取物理地址  
        /// </summary>  
        /// <param name="ip">Ip地址</param>  
        /// <returns></returns>  
        public static string GetstringIpAddress(string ip)
        {
            string url = "http://ip.ws.126.net/ipquery?ip="+ip;
            string result="";
            WebRequest wrt = null;
            WebResponse wrp = null;
            try
            {
                wrt = WebRequest.Create(url);
                wrt.Credentials = CredentialCache.DefaultCredentials;

                wrp = wrt.GetResponse();
                StreamReader sr = new StreamReader(wrp.GetResponseStream(), Encoding.Default);
                //获取到的数据格式:var lo="江苏省", lc="镇江市"; var localAddress={city:"镇江市", province:"江苏省"}
                string html = sr.ReadToEnd();
                string pattern = "{city:\"(?<key1>.*?)\", province:\"(?<key2>.*?)\"}";
                Regex regex = new Regex(pattern, RegexOptions.None);
                Match match = regex.Match(html);
                string city=match.Groups["key1"].Value;
                string province=match.Groups["key2"].Value;
               result = city.Equals(province) ? city : (province + city);
            }
            catch (Exception)
            {
            }
            finally
            {
                if (wrp != null)
                    wrp.Close();
                if (wrt != null)
                    wrt.Abort();
            }
            return result;
        }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值