首页 > 代码库 > 百度接口通过ip获取用户所在地
百度接口通过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 = http://www.mamicode.com/(JSONArray) jsStr.get("data");
JSONObject data= http://www.mamicode.com/(JSONObject) jsData.get(0);//位置
return (String) data.get("location");
} catch (IOException e) {
return "读取失败";
}
}
运行效果图:
详情请参考:http://matools.com/ip
百度接口通过ip获取用户所在地
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。