您好,登錄后才能下訂單哦!
2019年05月05日 開(kāi)源的IP 地址定位庫(kù) ip2region 1.9.0 發(fā)布了,功能還是很不錯(cuò)的,下面我就應(yīng)用下ip2region,來(lái)解析ip的地址
一、下載ip庫(kù)并解壓
地址為:https://github.com/lionsoul2014/ip2region/archive/v1.9.0-release.tar.gz
解壓
把ip2region.db粘貼到我們maven工程的resources下
二、添加ip2region依賴
<dependency>
<groupId>org.lionsoul</groupId>
<artifactId>ip2region</artifactId>
<version>1.7.2</version>
</dependency>
三、實(shí)現(xiàn)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;
}
}
四、測(cè)試
這里我是用的Junit進(jìn)行單元測(cè)試,你也可以自己寫(xiě)個(gè)main方法測(cè)試即可
添加junit依賴
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
編寫(xiě)測(cè)試類
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));
}
}
總結(jié):很方便,其實(shí)我覺(jué)得比純真的要好多了~
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。