Java根据IP获取国家省级地市信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java根据IP获取国家省级地市信息相关的知识,希望对你有一定的参考价值。

package com.ust.map;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import net.sf.json.JSONObject;
public class getAddressByIP{
public String getAddressByIP(){
try
{
String strIP = "60.15.28.2";
URL url = new URL( "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=" + strIP);
URLConnection conn = url.openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "GBK"));
String line = null;
StringBuffer result = new StringBuffer();

while((line = reader.readLine()) != null)
{ 
  result.append(line); 
} 
reader.close(); 

// System.out.println(result);
JSONObject json = JSONObject.fromObject(result.toString());
// System.out.println(json);
String country=(String) json.get("country");
String province=(String) json.get("province");
String city=(String) json.get("city");
return country+province+city;
}
catch( IOException e)
{
return "读取失败";
}
}
public static void main(String[] args) {
getAddressByIP getAddressByIP=new getAddressByIP();
System.out.println(getAddressByIP.getAddressByIP());
}
}

以上是关于Java根据IP获取国家省级地市信息的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 创建自己的 Facade 扩展 geoip 根据 IP 获取国家地域城市信息

从 IP 地址获取城市

基云计算的省级电子政务采纳关键影响因素分析

借助设备 IP 地址获取国家代码

如何使用 here.com API 从 IP 获取国家代码?

java根据IP获取当前区域天气信息