我是靠谱客的博主 老迟到大山,最近开发中收集的这篇文章主要介绍Springboot 整合百度地图 API前言正文,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前言

正文

1. 创建百度账号,申请成为开发者 :

 2. 创建应用,得到ak :

3. ok,可以开始使用了 ,具体API文档可以看官方 :https://lbsyun.baidu.com/index.php?title=webapi/ip-api

封装好的对接实例, 我们就拿 普通IP定位作为示例:

BaiduAddressUtil.java

import com.alibaba.fastjson.JSONException;
import com.alibaba.fastjson.JSONObject;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.nio.charset.Charset;

/**
 * @Author JCccc
 * @Description
 * @Date 2021/7/14 9:34
 */
@Component
public class BaiduAddressUtil {

    /**
     * 百度地图申请的ak
     */
    @Value("${baidu.map.ak}")
    private String AK;

    public String getAddress(String ip) {
        String address = "";
        try {
            // 这里调用百度的ip定位api服务 详见 http://api.map.baidu.com/lbsapi/cloud/ip-location-api.htm
            JSONObject resultJson = readJsonFromUrl("http://api.map.baidu.com/location/ip?ip=" + ip + "&ak=" + AK);
            //resultJson 是返回结果,当前只取位置信息
            address = ((JSONObject) resultJson.get("content")).getString("address");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return address;
    }

    /**
     * 读取
     *
     * @param rd
     * @return
     * @throws IOException
     */
    private static String readAll(BufferedReader rd) throws IOException {
        StringBuilder sb = new StringBuilder();
        int cp;
        while ((cp = rd.read()) != -1) {
            sb.append((char) cp);
        }
        return sb.toString();
    }

    /**
     * 创建链接
     *
     * @param url
     * @return
     * @throws IOException
     * @throws JSONException
     */
    private static JSONObject readJsonFromUrl(String url) throws IOException, JSONException {
        InputStream is = new URL(url).openStream();
        try {
            BufferedReader rd = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
            String jsonText = readAll(rd);
            JSONObject json = JSONObject.parseObject(jsonText);
            return json;
        } finally {
            is.close();
        }
    }
}

结果示例:

好,就到这。

最后

以上就是老迟到大山为你收集整理的Springboot 整合百度地图 API前言正文的全部内容,希望文章能够帮你解决Springboot 整合百度地图 API前言正文所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部