IPアドレスに基づいてJavaで所在地を取得する方法は何ですか。
Javaでは、IPアドレスを使用して場所を取得するためにサードパーティライブラリを使用することができます。その中でよく使われるライブラリには、GeoIP2とip2regionがあります。
- GeoIP2ライブラリを使用する:
最初に、GeoIP2のJavaライブラリをダウンロードして、そのライブラリを使用してIPアドレスの所在地を取得するためにコードを記述する必要があります。
import com.maxmind.geoip2.DatabaseReader;
import com.maxmind.geoip2.model.CityResponse;
import java.io.File;
import java.net.InetAddress;
public class IPUtil {
public static void main(String[] args) throws Exception {
File database = new File("/path/to/GeoLite2-City.mmdb");
DatabaseReader reader = new DatabaseReader.Builder(database).build();
InetAddress ipAddress = InetAddress.getByName("128.101.101.101");
CityResponse response = reader.city(ipAddress);
String country = response.getCountry().getName();
String city = response.getCity().getName();
System.out.println("Country: " + country);
System.out.println("City: " + city);
}
}
- ip2regionライブラリの使用:
ip2regionは、IPアドレスを入力すると素早く地域を特定できるjavaで実装された純真IPデータベースです。
import org.lionsoul.ip2region.*;
import java.io.IOException;
public class IPUtil {
public static void main(String[] args) throws DbMakerConfigException, IOException {
DbConfig config = new DbConfig();
DbSearcher searcher = new DbSearcher(config, "/path/to/ip2region.db");
DataBlock dataBlock = searcher.btreeSearch("128.101.101.101");
String region = dataBlock.getRegion();
System.out.println("Region: " + region);
}
}
実際の要求に応じて適切なデータベースを選択して、IPアドレスの所有地を取得するために使用される2つの一般的な方法が以上にあります。