|
@@ -38,14 +38,17 @@ public class AddressUtils
|
|
|
{
|
|
|
log.error("url------------ {}", IP_URL+"?ip=" + ip + "&json=true");
|
|
|
String rspStr = HttpClientUtil.get(IP_URL+"?ip=" + ip + "&json=true");
|
|
|
+ log.error("rspStr------------ {}", rspStr);
|
|
|
if (StringUtils.isEmpty(rspStr))
|
|
|
{
|
|
|
log.error("获取地理位置异常 {}", ip);
|
|
|
return UNKNOWN;
|
|
|
}
|
|
|
JSONObject obj = JSON.parseObject(rspStr);
|
|
|
+ log.error("obj------------ {}", obj);
|
|
|
//String region = obj.getString("pro");
|
|
|
String city = obj.getString("city");
|
|
|
+ log.error("city------------ {}", city);
|
|
|
return String.format("%s", city);
|
|
|
}
|
|
|
catch (Exception e)
|