Java中根据IP地址获取地理位置

Java中根据IP地址获取地理位置代码如下:

import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.lang3.StringUtils;

/**
 * 获取地址工具类
 *
 * @Author Lizhou
 **/
public class AddressUtils {

    /**
     * 根据IP地址获取地理位置
     */
    public static String getAddressByIP(String ip) {
        if (StringUtils.isBlank(ip)) {
            return "";
        }
        if ("127.0.0.1".equals(ip)) {
            return "局域网,无法获取位置";
        }
        String url = "https://sp0.baidu.com/8aQDcjqpAAV3otqbppnN2DJv/api.php?resource_id=6006&format=json&query=" + ip;
        HttpResponse res = HttpRequest.get(url).execute();
        if (200 != res.getStatus()) {
            return "获取位置失败";
        } else {
            JSONObject resJson = JSONObject.parseObject(res.body());
            JSONArray resArr = JSONArray.parseArray(resJson.getString("data"));
            resJson = JSONObject.parseObject("" + resArr.get(0));
            return resJson.getString("location");
        }
    }
}

如您在阅读中发现不足,欢迎留言!!!

猜你喜欢

转载自blog.csdn.net/qq_40065776/article/details/107936261