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

这个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官网在

如果您觉得我的文章对您有所帮助,欢迎扫码进行赞赏!

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

凌晨4点5杀老大爷

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值