91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

強大的IP地址定位庫--ip2region 的初步使用

發布時間:2020-08-06 11:59:12 來源:網絡 閱讀:3478 作者:Stitch_x 欄目:編程語言

2019年05月05日 開源的IP 地址定位庫 ip2region 1.9.0 發布了,功能還是很不錯的,下面我就應用下ip2region,來解析ip的地址

一、下載ip庫并解壓
地址為:https://github.com/lionsoul2014/ip2region/archive/v1.9.0-release.tar.gz
解壓
強大的IP地址定位庫--ip2region 的初步使用

把ip2region.db粘貼到我們maven工程的resources下
強大的IP地址定位庫--ip2region 的初步使用

二、添加ip2region依賴

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

三、實現IPUtil工具類

import java.io.File;
import java.lang.reflect.Method;

import org.lionsoul.ip2region.DataBlock;
import org.lionsoul.ip2region.DbConfig;
import org.lionsoul.ip2region.DbSearcher;
import org.lionsoul.ip2region.Util;

public class IPUtil {
    public static String getCityInfo(String ip){
    //db
    String dbPath = IPUtil.class.getResource("/ip2region.db").getPath();

    File file = new File(dbPath);

        if ( file.exists() == false ) {
        System.out.println("Error: Invalid ip2region.db file");
    }

    //查詢算法
    int algorithm = DbSearcher.BTREE_ALGORITHM; //B-tree
    //DbSearcher.BINARY_ALGORITHM //Binary
    //DbSearcher.MEMORY_ALGORITYM //Memory
        try {
        DbConfig config = new DbConfig();
        DbSearcher searcher = new DbSearcher(config, dbPath);

        //define the method
        Method method = null;
        switch ( algorithm )
        {
            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;
        }

        DataBlock dataBlock = null;
        if ( Util.isIpAddress(ip) == false ) {
            System.out.println("Error: Invalid ip address");
        }

        dataBlock  = (DataBlock) method.invoke(searcher, ip);

        return dataBlock.getRegion();

    } catch (Exception e) {
        e.printStackTrace();
    }

        return null;
}

}

四、測試
這里我是用的Junit進行單元測試,你也可以自己寫個main方法測試即可
添加junit依賴

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
</dependency>

編寫測試類

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class IPUtilTest {
    private IPUtil ipUtil;

    @Before
    public void setUp(){
        ipUtil=new IPUtil();
    }
    @After
    public void tearDown(){
        ipUtil=null;
    }
    @Test
    public void getCityInfo(){
        String ip = "220.248.12.158";
        System.out.println(ipUtil.getCityInfo(ip));
    }
}

強大的IP地址定位庫--ip2region 的初步使用
總結:很方便,其實我覺得比純真的要好多了~

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

齐河县| 甘肃省| 徐州市| 乐东| 盐边县| 淄博市| 上犹县| 和林格尔县| 永川市| 五台县| 浪卡子县| 衡阳县| 灵丘县| 湘乡市| 玛沁县| 偏关县| 乐安县| 湄潭县| 巴塘县| 砚山县| 新津县| 江安县| 张家界市| 扶风县| 衡山县| 竹山县| 汕头市| 泗水县| 抚松县| 静海县| 千阳县| 永仁县| 玉环县| 托里县| 井研县| 和顺县| 师宗县| 怀安县| 盐边县| 蒲城县| 西城区|