根據IP定位地理位置

翻身碼農把歌唱發表於2018-12-26

背景:

專案在海外執行,需要根據IP獲取國家,城市,經緯度等資訊,但是,百度地圖、高德地圖、淘寶等API的使用不了,而谷歌地圖的又有頻率限制,於是網上各種搜尋,找到 GeoLiteCity.dat,GeoLiteCity.dat就好比一個本地的資料庫檔案,方法如下:

引入依賴:

<dependency>
    <groupId>com.maxmind.geoip</groupId>
    <artifactId>geoip-api</artifactId>
    <version>1.3.1</version>
</dependency>
複製程式碼

測試類如下:

public class IPTest {

    public static void main(String[] args) {
        try {
            LookupService cl = new LookupService("C:\\GeoLiteCity.dat", LookupService.GEOIP_MEMORY_CACHE);
            Location l2 = cl.getLocation("128.1.35.120");

            System.out.println(
                    "countryCode: " + l2.countryCode +"\n"+
                            "countryName: " + l2.countryName +"\n"+
                            "region: " + l2.region +"\n"+
                            "city: " + l2.city +"\n"+
                            "latitude: " + l2.latitude +"\n"+
                            "longitude: " + l2.longitude);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
複製程式碼

執行結果如下:

countryCode: TH
countryName: Thailand
region: 40
city: Bangkok
latitude: 13.753998
longitude: 100.5014
複製程式碼

專案中使用如下:

import com.maxmind.geoip.Location;
import com.maxmind.geoip.LookupService;

/**
 * @author: xbq
 * @Date: 2018/8/1 09:35
 */
@Service
public class LoadIp {

    private LookupService cl;

    @PostConstruct
    public void init() {
        try {
            cl = new LookupService(systemConstants.getIpDb(), LookupService.GEOIP_MEMORY_CACHE);
        } catch (IOException e) {
            CusLogger.error("載入ip純真庫異常:" + e.getMessage(), e);
        }
    }

	
	/**
     * 使用
     * @param ip
     * @return
     */
	public void fun(String ip) {
		// 根據ip來判定國家地區
		if(cl != null) {
			Location l2 = null;
			l2 = cl.getLocation(ip);
			if(l2 != null) {
				// 獲取國家編碼
				String countryCode = l2.countryCode;
				// 獲取國家名稱
				String countryName = l2.countryName;
				// 獲取城市
				String city = l2.city;
				// 業務處理 ...
				
			}
		}
	}
}
複製程式碼

歡迎關注我的公眾號~ 搜尋公眾號: 翻身碼農把歌唱 或者 掃描下方二維碼:

img

相關文章