一、前言
4 G6 b( J6 B: j 在开发中,我们需要记录关于登录者的ip和位置信息,可以通过ip2region来实现!比如说,qq,gitee等 我们在异地登录时,会提醒我们账号异地登录!外卖等软件,需要地理位置,如果我们的gps关闭,也可以根据IP分析地理位置等。
' l' `: \/ m; u% t二、简介
" H: I$ P- O4 w4 S: G5 d ip2region - 准确率99.9%的离线IP地址定位库,0.0x毫秒级查询,ip2region.db数据库只有数MB,提供了java、php、c、python、nodejs、golang、c#等查询绑定和Binary、B树、内存三种查询算法。每条ip数据段都固定了格式:
9 n* w `6 m# O+ |+ J) A 城市Id|国家|区域|省份|城市|ISP_
" w4 L0 | ^. w& Agithub地址:https://github.com/lionsoul2014/ip2region
( n* W' [6 G3 T; i三、使用
% N( G @+ H: T# \nuget安装
) i7 a) M5 \' ~0 p. V! D- Install-Package IP2Region
w0 F. f( A* ]5 T" W* U g 下载ip2region.db2 w8 N4 q; N( X) j
然后找到data/文件夹下面找到ip2region.db复制到项目resources下,使用就很简单了,代码就一行。
- s- J& n6 u, r: G1 i8 ^: R: s" Bstatic void Main(string[] args)
{
using (var _search = new DbSearcher(Environment.CurrentDirectory + @"\DB\ip2region.db"))
{
Console.WriteLine(_search.MemorySearch("183.129.193.166").Region);
Console.Read();
}
} 四、总结1 T3 j z. G8 n+ P- q* m# j
文章来源于即兴发挥,虽然我工作中现在还没遇到这种需求,但是了解一下总归是有好处的,欢迎大家留言讨论! |