博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
test
阅读量:5326 次
发布时间:2019-06-14

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

View Code
public bool IsBeiJingIPAddress()        {            string clientIP = GetClientIP();            string val = CS.Utility.Strfunc.GetHtml(string.Format("http://www.youdao.com/smartresult-xml/search.s?type=ip&q={0}", clientIP));            val = val.Replace("\0", "");            CS.Utility.Log.LogHelper.Log.WriteLog("youdao:" + val);            if (string.IsNullOrEmpty(val))            {                val = CS.Utility.Strfunc.GetHtml(string.Format("http://www.ip138.com/ips1388.asp?ip={0}&action=2", clientIP));                val = val.Replace("\0", "");                CS.Utility.Log.LogHelper.Log.WriteLog("ip138:" + val);            }            if (string.IsNullOrEmpty(val))            {                val = CS.Utility.Strfunc.GetHtml(string.Format("http://api.liqwei.com/location/?ip={0}", clientIP));                val = val.Replace("\0", "");                CS.Utility.Log.LogHelper.Log.WriteLog("liqwei:" + val);            }            if (val.Contains("北京"))            {                return true;            }            else            {                return false;            }        }

转载于:https://www.cnblogs.com/jujulee/archive/2012/08/23/2652193.html

你可能感兴趣的文章
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
HTML5学习笔记简明版(2):新元素之section,article,aside
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
CodeForces 605 E. Intergalaxy Trips
查看>>
TT8509: PL/SQL execution terminated; PLSQL_TIMEOUT exceeded
查看>>
华为十年
查看>>
android中关于的dpi,dp,dip的定义及转换
查看>>
thread msg
查看>>
【重点突破】——第三方绘图工具FusionCharts.js的使用详解
查看>>
C#中的反射
查看>>
NHibernate - ICriteria 查询[转 十年如一]
查看>>
linux 2.4.16 内核 strcmp详解
查看>>
python 全栈开发,Day67(Django简介)
查看>>
ML_入门
查看>>
vuex 的基本使用
查看>>
通过Python实现mysql查询数据库实例
查看>>
Python图形编程探索系列-09-tkinter与matplotlib结合案例
查看>>
Analysis of Web.xml in Hello1 project
查看>>
cloc 统计代码行数工具
查看>>