注意:需要自行申请key,在代码相应位置替换,参考官方地址:腾讯位置服务 - 立足生态,连接未来
下面上代码
import com.alibaba.fastjson.JSONObject;
import com.cxt.car.po.dto.address.Result;
import com.cxt.car.util.baseUtils.JsonUtil;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
/**
* @Author: yansf
* @Description:根据经纬度获取地址
* @Date:Creat in 20:20 2019/12/11
* @Modified By:
*/
public class AddressUntils {
static String secretKey = "此处是申请的key";
/**
* @param lat 纬度
* @param lng 经度
* @return
*/
public static Result getAddress(String lat, String lng) throws IOException {
JSONObject obj = getLocationInfo(lat, lng).getJSONObje