How to get city name based on IP address in java?

2019-01-12 01:23发布

Is it possible to know the city name based on IP address in java?

3条回答
何必那么认真
2楼-- · 2019-01-12 01:54

If an online API as the others have suggested won't suit your application, I have previously successfully used MaxMind GeoLite City, which comes with a Java API (among many others). Just download the database files, point your API code at them, and off you go. Simple and straightforward.

查看更多
Anthone
3楼-- · 2019-01-12 01:55

You have to use a service such as hostip.info that maps an IP to its physical location, and offer an API to developers to simplify the task.

There are many other services, paid and for free, that you can find at Google.

查看更多
爱情/是我丢掉的垃圾
4楼-- · 2019-01-12 02:06

are you using jsp or what ? for city name over client side you can use google's API which will return you the geographical details of the user mapped with the IP. As google's documentation say you can get the following

When populated, the google.loader.ClientLocation object is populated with the following metro-level granularity properties:

* ClientLocation.latitude — supplies the low resolution latitude associated with the client's IP address
* ClientLocation.longitude — supplies the low resolution longitude associated with the client's IP address
* ClientLocation.address.city — supplies the name of the city associated with the client's IP address
* ClientLocation.address.country — supplies the name of the country associated with the client's IP address
* ClientLocation.address.country_code — supplies the name of the ISO 3166-1 country code associated with the client's IP address
* ClientLocation.address.region — supplies the country specific region name associated with the client's IP address

for further reference see the complete documentation at http://code.google.com/apis/ajax/documentation/

查看更多
登录 后发表回答