首頁 > 軟體

Java利用ip2region實現獲取IP地址詳情

2022-07-29 14:03:42

最近有個需求是通過ip地址獲取地址詳情,沒有弄過相關的介面,通過查資料搞定之後趕緊記錄分享一下

一開始我是通過api的方法獲取但是總是報錯獲取不到所以改用了ip2region離線ip解析的方法獲取的,廢話不多說看操作。

首先要下載ip2region.db

下載地址:百度網路硬碟 請輸入提取碼​​​​​​

提取碼:vik5

設定依賴

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

將檔案放到resources目錄下

設定一個工具類(裡面有個測試方法)

之前我在網上查的資料用完之後本地是可以的測試的但是部署到伺服器之後就找不到ip2region.db這個檔案了,因為這個檔案我是放在resources目錄 下面的,大家都知道打包之後resources這個目錄 是不存在的所以找不到這個檔案,後來試了很久才搞定,下面是優化的工具類

@Slf4j
public class IpUtil {
 
    /**
     * 獲取IP地址
     * @param request
     * @return
     */
    public static String getIpAddr(HttpServletRequest request) {
        String ip = request.getHeader("x-forwarded-for");
        if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
            ip = request.getHeader("X-Real-IP");
        }
        if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
            ip = request.getHeader("Proxy-Client-IP");
        }
        if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
            ip = request.getHeader("WL-Proxy-Client-IP");
        }
        if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
            ip = request.getRemoteAddr();
        }
        if ("0:0:0:0:0:0:0:1".equals(ip)) {
            ip = "127.0.0.1";
        }
        if (ip.split(",").length > 1) {
            ip = ip.split(",")[0];
        }
        return ip;
    }
 
    /**
     * 根據IP地址獲取城市
     * @param ip
     * @return
     */
    public static String getCityInfo(String ip) throws IOException {
        // 這裡能讀到這個流,但是是找不到這個檔案的
        ClassPathResource classPathResource = new ClassPathResource("ip2region.db");
        // 我們新建一個檔案,把流存放到這個檔案,再從這個檔案裡面讀取資料,就可以了
        File file = new File("ip2region.db");
        FileUtils.copyInputStreamToFile(classPathResource.getInputStream(),file);
        // todo 獲取輸入流
        InputStream inputStream = new FileInputStream(file);
        try {
            int len;
            byte[] buffer = new byte[1024];
            //todo 這裡的輸出記得刪除再上線
            while ((len = inputStream.read(buffer)) != -1) {
               // System.out.println(new String(buffer, 0, len));
            }
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            // TODO 記得關閉流操作
            inputStream.close();
        }
        //查詢演演算法
        int algorithm = DbSearcher.BTREE_ALGORITHM; //B-tree
        try {
            DbConfig config = new DbConfig();
            DbSearcher searcher = new DbSearcher(config,file.getPath());
            Method method;
            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;
                default:
                    return null;
            }
            DataBlock dataBlock;
            if (!Util.isIpAddress(ip)) {
                log.info("Error: Invalid ip address");
                return null;
            }
            dataBlock  = (DataBlock) method.invoke(searcher, ip);
            return dataBlock.getRegion();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
 
    public static void main(String[] args) {
        try {
            // 這個ip的結果是   中國|0|香港|0|香港寬頻
            String detail = IpUtil.getCityInfo("58.176.81.30");
            System.out.println(detail);
        }catch (IOException e){
 
        }
 
    }
 
}

到這裡就完事了。

這下面是一下國外的ip地址可以測試一下

  '35.187.132.16',
  '35.187.132.18',
  '49.35.162.6',
  '5.188.210.227',
  '64.233.173.10',
  '74.125.151.127',
  '74.125.212.219',
  '74.125.212.221',
  '95.184.60.224'

到此這篇關於Java利用ip2region實現獲取IP地址詳情的文章就介紹到這了,更多相關Java ip2region獲取IP地址內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com