這篇文章主要介紹“使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢”,在日常操作中,相信很多人在使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

成都網(wǎng)站制作、網(wǎng)站建設、外貿網(wǎng)站建設的開發(fā),更需要了解用戶,從用戶角度來建設網(wǎng)站,獲得較好的用戶體驗。成都創(chuàng)新互聯(lián)公司多年互聯(lián)網(wǎng)經(jīng)驗,見的多,溝通容易、能幫助客戶提出的運營建議。作為成都一家網(wǎng)絡公司,打造的就是網(wǎng)站建設產品直銷的概念。選擇成都創(chuàng)新互聯(lián)公司,不只是建站,我們把建站作為產品,不斷的更新、完善,讓每位來訪用戶感受到浩方產品的價值服務。
使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢。下載地址
網(wǎng)盤下載 提取碼:2chr
package com.sky.common.utils;
import cn.hutool.core.io.resource.ClassPathResource;
import org.apache.commons.lang3.StringUtils;
import java.io.*;
import java.net.Inet4Address;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
/**
* ip歸屬地解析
*
* @author Moses wsj1198878990@126.com
* @since 1.0.0 2019-10-22
*/
public final class IPDataHandler {
private static DataInputStream inputStream = null;
private static long fileLength = -1;
private static int dataLength = -1;
private static Map<String, String> cacheMap = null;
private static byte[] allData = null;
static {
// File file = new File(IP_DATA_PATH);
try {
//把文件放到src/main/resources下面
File file = new ClassPathResource("ip-attribution.dat").getFile();
inputStream = new DataInputStream(new FileInputStream(file));
fileLength = file.length();
cacheMap = new HashMap<String, String>();
if (fileLength > Integer.MAX_VALUE) {
throw new Exception("the filelength over 2GB");
}
dataLength = (int) fileLength;
allData = new byte[dataLength];
inputStream.read(allData, 0, dataLength);
dataLength = (int) getbytesTolong(allData, 0, 4,
ByteOrder.BIG_ENDIAN);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
private static long getbytesTolong(byte[] bytes, int offerSet, int size,
ByteOrder byteOrder) {
if ((offerSet + size) > bytes.length || size <= 0) {
return -1;
}
byte[] b = new byte[size];
for (int i = 0; i < b.length; i++) {
b[i] = bytes[offerSet + i];
}
ByteBuffer byteBuffer = ByteBuffer.wrap(b);
byteBuffer.order(byteOrder);
long temp = -1;
if (byteBuffer.hasRemaining()) {
temp = byteBuffer.getInt();
}
return temp;
}
private static long ip2long(String ip) throws UnknownHostException {
InetAddress address = InetAddress.getByName(ip);
byte[] bytes = address.getAddress();
long reslut = getbytesTolong(bytes, 0, 4, ByteOrder.BIG_ENDIAN);
return reslut;
}
private static int getIntByBytes(byte[] b, int offSet) {
if (b == null || (b.length < (offSet + 3))) {
return -1;
}
byte[] bytes = Arrays.copyOfRange(allData, offSet, offSet + 3);
byte[] bs = new byte[4];
bs[3] = 0;
for (int i = 0; i < 3; i++) {
bs[i] = bytes[i];
}
return (int) getbytesTolong(bs, 0, 4, ByteOrder.LITTLE_ENDIAN);
}
public static String findGeography(String address) {
if (StringUtils.isBlank(address)) {
return "illegal address";
}
if (dataLength < 4 || allData == null) {
return "illegal ip data";
}
String ip = "127.0.0.1";
try {
ip = Inet4Address.getByName(address).getHostAddress();
} catch (UnknownHostException e) {
e.printStackTrace();
}
String[] ipArray = StringUtils.split(ip, ".");
int ipHeadValue = Integer.parseInt(ipArray[0]);
if (ipArray.length != 4 || ipHeadValue < 0 || ipHeadValue > 255) {
return "illegal ip";
}
if (cacheMap.containsKey(ip)) {
return cacheMap.get(ip);
}
long numIp = 1;
try {
numIp = ip2long(address);
} catch (UnknownHostException e1) {
e1.printStackTrace();
}
int tempOffSet = ipHeadValue * 4 + 4;
long start = getbytesTolong(allData, tempOffSet, 4,
ByteOrder.LITTLE_ENDIAN);
int max_len = dataLength - 1028;
long resultOffSet = 0;
int resultSize = 0;
for (start = start * 8 + 1024; start < max_len; start += 8) {
if (getbytesTolong(allData, (int) start + 4, 4,
ByteOrder.BIG_ENDIAN) >= numIp) {
resultOffSet = getIntByBytes(allData, (int) (start + 4 + 4));
resultSize = (char) allData[(int) start + 7 + 4];
break;
}
}
if (resultOffSet <= 0) {
return "resultOffSet too small";
}
byte[] add = Arrays.copyOfRange(allData, (int) (dataLength
+ resultOffSet - 1024),
(int) (dataLength + resultOffSet - 1024 + resultSize));
try {
if (add == null) {
cacheMap.put(ip, new String("no data found!!"));
} else {
cacheMap.put(ip, new String(add, "UTF-8"));
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return cacheMap.get(ip);
}
public static void main(String[] args) {
String s = findGeography("61.164.169.58");
System.out.println(s.trim());
}
}到此,關于“使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)站欄目:使用ip-attribution.dat文件實現(xiàn)IP歸屬地查詢
文章分享:http://chinadenli.net/article28/gdjsjp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、自適應網(wǎng)站、網(wǎng)站收錄、全網(wǎng)營銷推廣、微信公眾號、服務器托管
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)