百度接口通过ip获取用户所在地

Posted ixiaoyang8

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度接口通过ip获取用户所在地相关的知识,希望对你有一定的参考价值。

/** * 百度接口
     * 通过用户ip获取用户所在地
     * @param userIp
     * @return
     */
public static String getAddressByBD2(String strIP) {
try {
URL url = new URL("http://opendata.baidu.com/api.php?query=" + strIP+"&co=&resource_id=6006&t=1433920989928&ie=utf8&oe=utf-8&format=json");;
URLConnection conn = url.openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
String line = null;
StringBuffer result = new StringBuffer();
while ((line = reader.readLine()) != null) {
result.append(line);
}
reader.close();
JSONObject jsStr = new JSONObject(result.toString());
        JSONArray jsData = (JSONArray) jsStr.get("data");
        JSONObject data= (JSONObject) jsData.get(0);//位置
        return (String) data.get("location");
} catch (IOException e) {
return "读取失败";
}
}
 
运行效果图:
技术分享
详情请参考:http://matools.com/ip

以上是关于百度接口通过ip获取用户所在地的主要内容,如果未能解决你的问题,请参考以下文章

通过网络请求获取当前IP,并得到大致位置

百度地图服务通过ip获取具体地址

java根据ip地址获取相应的所在地,精确到街道和门牌号,要怎么实现?

php 获取准确的ip,并通过ip准确获取所在区域 的方法

获取访问者ip及其所在城市

(分享)根据IP获取地理位置(百度API)