springboot免费的IP定位服务

0慕念0 · · 887 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

简介

ip2region 是准确率99.9%的ip地址定位库,0.0x毫秒级查询,数据库文件大小只有1.5M,提供了java,php,c,python,nodejs,golang,c#查询绑定和Binary,B树,内存三种查询算法!

maven依赖

        <dependency>
            <groupId>org.lionsoul</groupId>
            <artifactId>ip2region</artifactId>
            <version>1.7.2</version>
        </dependency>

DB文件下载地址:
https://github.com/lionsoul2014/ip2region/archive/v1.9.0-release.tar.gz

下载这个项目之后到data/文件夹下面找到ip2region.db,我放在了/user/home目录下

Java 工具类

public class IpUtil {

    public static String getCityInfo(String ip, int type) {
        //db
        String dbPath = "/usr/home/ip2region.db";
        File file = new File(dbPath);
        if (!file.exists()) {
            return "Error: Invalid ip2region.db file";
        }
        // 查询算法
        // DbSearcher.BTREE_ALGORITHM B-tree
        // DbSearcher.BINARY_ALGORITHM Binary
        // DbSearcher.MEMORY_ALGORITYM Memory
        // int algorithm = DbSearcher.BINARY_ALGORITHM;
        try {
            DbConfig config = new DbConfig();
            DbSearcher searcher = new DbSearcher(config, dbPath);
            //define the method
            Method method = null;
            switch (type) {
                case DbSearcher.BTREE_ALGORITHM:
                    method = searcher.getClass().getMethod("btreeSearch", String.class);
                    break;
                case DbSearcher.BINARY_ALGORITHM:
                    method = searcher.getClass().getMethod("binarySearch", String.class);
                    break;
                case DbSearcher.MEMORY_ALGORITYM:
                    method = searcher.getClass().getMethod("memorySearch", String.class);
                    break;
                default:
                    break;
            }
            DataBlock dataBlock;
            if (!Util.isIpAddress(ip)) {
                return "Error: Invalid ip address";
            }
            dataBlock = (DataBlock) method.invoke(searcher, ip);
            return dataBlock.getRegion();
        } catch (Exception e) {
            e.printStackTrace();
            return "exception";
        }
    }
}

写个接口用于测试

    @ApiOperation(value = "IP定位")
    @GetMapping("/test")
    public ResponseEntity<String> test(String ip, int type) {
        return ResponseEntity.ok(IpUtil.getCityInfo(ip, type));
    }

请求接口,定位成功:


image.png

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:0慕念0

查看原文:springboot免费的IP定位服务

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

887 次点击  ∙  1 赞  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传