我是Android的新手,我想使用ip地址获取国家/地区名称和国家/地区代码。请有人指导我。
获取IP的代码:
public String getLocalIpAddress() {
WifiManager wifiMgr = (WifiManager) getActivity().getSystemService(context.WIFI_SERVICE);
if(wifiMgr.isWifiEnabled()) {
WifiInfo wifiInfo = wifiMgr.getConnectionInfo();
int ip = wifiInfo.getIpAddress();
String wifiIpAddress = String.format("%d.%d.%d.%d",
(ip & 0xff),
(ip >> 8 & 0xff),
(ip >> 16 & 0xff),
(ip >> 24 & 0xff));
return wifiIpAddress;
}else{
try {
for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements(); ) {
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
InetAddress inetAddress = enumIpAddr.nextElement();
Log.i("","111 inetAddress.getHostAddress(): "+inetAddress.getHostAddress());
//the condition after && is missing in your snippet, checking instance of inetAddress
if (!inetAddress.isLoopbackAddress() && inetAddress instanceof Inet4Address) {
Log.i("","111 return inetAddress.getHostAddress(): "+inetAddress.getHostAddress());
return inetAddress.getHostAddress();
}
}
}
} catch (SocketException e) {
e.printStackTrace();
}
}
return null;
}
我不知道如何使用IP地址获取国家/地区代码和名称。
提前致谢!
答案 0 :(得分:1)
您可以使用此完美指南:http://www.mkyong.com/java/java-find-location-using-ip-address/
//ip address something like that 192.168.0.1
public String getCountryFromIP(String ipAddress) {
File file = new File("resources/GeoLiteCity.dat");
LookupService lookup = new LookupService(file,LookupService.GEOIP_MEMORY_CACHE);
Location locationServices = lookup.getLocation(ipAddress);
return locationServices.countryName;
}
答案 1 :(得分:0)
首先,您应该获取设备的外部IP地址,然后使用一些Web API like this来获取国家/地区代码和名称。
答案 2 :(得分:0)
在我的一个应用程序中,我有同样的要求获取基于ip地址的用户位置,因为在android手机中我们无法获取外部IP地址。所以我们通过实现Web服务在我们的服务器端实现它。通过我们的Web服务,我们能够获得用户外部IP地址,然后我们使用Maxmind API获取用户国家代码和名称。 Maxmind Api是付费的,但很容易实现。
答案 3 :(得分:0)
1。)查询你的公共IP地址:
public static String getPublicIP() throws IOException
{
Document doc = Jsoup.connect("http://www.checkip.org").get();
return doc.getElementById("yourip").select("h1").first().select("span").text();
}
2.)然后查询您的国家/地区代码/名称:(使用上述方法)
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://ipinfo.io/"+getPublicIP());
HttpResponse response;
try {
response = client.execute(request);
Log.d("Response of GET request", response.toString());
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我希望这会有所帮助。
答案 4 :(得分:0)
比使用第三方API和经常过时的GeoLiteCity数据库更好的方法。
检查ip2asn2cc库。
此库使用所有Regional Internet Registries提供的官方数据库,这些数据库经常更新。
过去,我一直为此目的使用API,而我的服务非常频繁地达到API速率限制。恕我直言,ip2asn2cc提供了更大的灵活性,并消除了应用程序对外部的依赖。