博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过IP得到IP所在地省市
阅读量:5281 次
发布时间:2019-06-14

本文共 1505 字,大约阅读时间需要 5 分钟。

///                  /// 通过IP得到IP所在地省市(Porschev)                 ///                  ///                  /// 
private string GetAddressByIP(string ip) { string res = String.Empty; string url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=" + ip; HttpItem item = new HttpItem { Url = url, Method = "POST", Accept = "application/json", ContentType = "application/x-www-form-urlencoded" }; //得到请求结果 string result = helper.GetHtml(item).Html; result = ConvertUnicode2Chinese(result); JObject obj = (JObject)result.JsonToObject(); if (obj != null) { //{ "ret":1,"start":"115.28.0.0","end":"115.29.255.255","country":"中国","province":"北京","city":"北京","district":"","isp":"电信","type":"机房","desc":"中国万网机房电信"} res = obj["province"].ToString() + obj["city"].ToString(); } return res; } /// /// 将Unicode编码转换成中文 /// /// ///
private string ConvertUnicode2Chinese(string result) { Regex reg = new Regex(@"(?i)\\[uU]([0-9a-f]{4})"); return reg.Replace(result, delegate(Match m) { return ((char)Convert.ToInt32(m.Groups[1].Value, 16)).ToString(); }); }

  

转载于:https://www.cnblogs.com/zhao-yi/p/8059795.html

你可能感兴趣的文章
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Linux中防火墙centos
查看>>
[JS]递归对象或数组
查看>>
linux sed命令
查看>>
程序存储问题
查看>>
优雅地书写回调——Promise
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
css & input type & search icon
查看>>
C# 强制关闭当前程序进程(完全Kill掉不留痕迹)
查看>>
语音识别中的MFCC的提取原理和MATLAB实现
查看>>
MetaWeblog API Test
查看>>
移动、尺寸改变
查看>>
c# 文件笔记
查看>>
类和结构
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>