欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

IPIP.net识别客户端真实访问地址,具体到国家,省,市

程序员文章站 2022-06-22 15:29:13
这个IP库实测还是比较准确的,免费版的可以具体到国内城市,国外只能到国家名称,免费版的自己定期更新Ip数据库即可。 以下为C#调用代码 IPIP.net官网在这 戳戳戳 ————————————————版权声明:本文为CSDN博主「皮皮虾大侠」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转 ......

 
这个ip库实测还是比较准确的,免费版的可以具体到国内城市,国外只能到国家名称,免费版的自己定期更新ip数据库即可。

以下为c#调用代码

 
class program
    {
        static void main(string[] args)
        {
            try
            {
                //传入要查询的ip 和17monipdb.datx 下载的ip库所在位置
                string address = ipaddress.findipaddress("1.198.219.205", @"d:\开发资料\资料\code\ip地址获取\ipaddress\ipaddress\bin\debug"); 
                console.writeline(address);
            }
            catch (ioexception ioex)
            {
                console.writeline(ioex.stacktrace);
            }
            catch (ipv4formatexception ipex)
            {
                console.writeline(ipex.stacktrace);
            }
            console.readkey(true);
        }
    }
    public class ipaddress
    {
        public static string findipaddress(string ip,string basepath)
        {
            string address = "";
            if (string.isnullorempty(ip))
            {
                return address;
            }
            try
            {
                string path = string.format("{0}\\{1}", basepath, "17monipdb.datx");
                city city = new city(path);
                string[] arr = city.find(ip);
                if (arr != null && arr.length > 0)
                {
                    address = string.join("-", arr);
                }
            }
            catch (ioexception ioex)
            {
                console.writeline(ioex.stacktrace);
            }
            catch (ipv4formatexception ipex)
            {
                console.writeline(ipex.stacktrace);
            }
            return address.trimend("-".tochararray());
        }
    }

 


ipip.net官网在这  
————————————————
版权声明:本文为csdn博主「皮皮虾大侠」的原创文章,遵循 cc 4.0 by-sa 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/asa_jim/article/details/94394612    是本人csdn原创

 

 
  • 23
  • 00
  • 01
  • 02
  • 03
  • 04
  • 05
  • 06
  • 07
  • 08
  • 09
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 00
  • 01
  • 02
  • 03
  • 04
  • 05
  • 06
  • 07
  • 08
  • 09
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 00
  • 01
  • 02
  • 03
  • 04
  • 05
  • 06
  • 07
  • 08
  • 09
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12