java 城市定位_经纬度定位城市以及城市判断经纬度

本文展示了如何使用Java通过调用百度地图API进行地理编码和逆地理编码。通过`Parser_Tool`类的`do_get`方法获取REST资源,实现根据地址获取经纬度,以及根据经纬度反查地址的功能。
摘要由CSDN通过智能技术生成

package com.humming.cgv.test;

import java.io.IOException;

import java.nio.charset.StandardCharsets;

import java.util.List;

import org.apache.http.HttpEntity;

import org.apache.http.HttpResponse;

import org.apache.http.NameValuePair;

import org.apache.http.client.ClientProtocolException;

import org.apache.http.client.entity.UrlEncodedFormEntity;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.methods.HttpPost;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

public class Parser_Tool {

/**

* post 获取 rest 资源

* @return

*/

public static String do_post(String url, List name_value_pair) throws IOException {

String body = "{}";

CloseableHttpClient httpclient = HttpClients.createDefault();

try {

HttpPost httpost = new HttpPost(url);

httpost.setEntity(new UrlEncodedFormEntity(name_value_pair, StandardCharsets.UTF_8));

HttpResponse response = httpclient.execute(httpost);

HttpEntity entity = response.getEntity();

body = EntityUtils.toString(entity);

} finally {

htt

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值