java實現根據高德地圖API接口進行地址位置解析,將地址轉化爲經緯度

原創文章,轉載請註明,歡迎評論和更改。java

1,所需額外ar包,import net.sf.json.JSONObject;json

2,完整源代碼代碼api

package com.travel.util;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;

import net.sf.json.JSONObject;
    
public class AddressLngLatExchange {
    
    public String getLngLat(String address) {
        StringBuffer json = new StringBuffer();
        try {
            URL u = new URL("http://restapi.amap.com/v3/geocode/geo?address="+address+"&output=JSON&key=7f4ffae4074e8b8e4d147190527a4b72");
            URLConnection yc = u.openConnection();
            //讀取返回的數據
            BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream(),"UTF-8"));
            String inputline = null;
            while((inputline=in.readLine())!=null){
                json.append(inputline);
            }
        in.close();
        } catch (Exception e) {
             e.printStackTrace();
         }
        String jsonStr=json.toString();
        JSONObject jsonObject = JSONObject.fromObject(jsonStr);
        
     //判斷輸入的位置點是否存在
if(jsonObject.getJSONArray("geocodes").size()>0) return jsonObject.getJSONArray("geocodes").getJSONObject(0).get("location").toString(); else return null; } public static void main(String[] args) { AddressLngLatExchange addressLngLatExchange=new AddressLngLatExchange(); System.out.println(addressLngLatExchange.getLngLat("北京")); } }

原創文章,轉載請註明,歡迎評論和更改。app

相關文章
相關標籤/搜索