真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

利用java怎么樣實現(xiàn)根據(jù)經(jīng)緯度獲取地址-創(chuàng)新互聯(lián)

這篇文章將為大家詳細講解有關(guān)利用java怎么樣實現(xiàn)根據(jù)經(jīng)緯度獲取地址,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

成都創(chuàng)新互聯(lián)公司服務(wù)項目包括三臺網(wǎng)站建設(shè)、三臺網(wǎng)站制作、三臺網(wǎng)頁制作以及三臺網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,三臺網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到三臺省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

 java 根據(jù)經(jīng)緯度獲取地址實現(xiàn)代碼

實現(xiàn)代碼:

public class GetLocation { 
  public static void main(String[] args) { 
    // lat 39.97646    
    //log 116.3039  
    String add = getAdd("116.3039", "39.97646"); 
    JSONObject jsonObject = JSONObject.fromObject(add); 
    JSONArray jsonArray = JSONArray.fromObject(jsonObject.getString("addrList")); 
    JSONObject j_2 = JSONObject.fromObject(jsonArray.get(0)); 
    String allAdd = j_2.getString("admName"); 
    String arr[] = allAdd.split(","); 
    System.out.println("?。?+arr[0]+"\n市:"+arr[1]+"\n區(qū):"+arr[2]); 
  } 
   
  public static String getAdd(String log, String lat ){ 
    //lat 小 log 大 
    //參數(shù)解釋: 緯度,經(jīng)度 type 001 (100代表道路,010代表POI,001代表門址,111可以同時顯示前三項) 
    String urlString = "http://gc.ditu.aliyun.com/regeocoding?l="+lat+","+log+"&type=010"; 
    String res = "";   
    try {   
      URL url = new URL(urlString);  
      java.net.HttpURLConnection conn = (java.net.HttpURLConnection)url.openConnection();  
      conn.setDoOutput(true);  
      conn.setRequestMethod("POST");  
      java.io.BufferedReader in = new java.io.BufferedReader(new java.io.InputStreamReader(conn.getInputStream(),"UTF-8"));  
      String line;  
      while ((line = in.readLine()) != null) {  
        res += line+"\n";  
     }  
      in.close();  
    } catch (Exception e) {  
      System.out.println("error in wapaction,and e is " + e.getMessage());  
    }  
    System.out.println(res); 
    return res;  
  } 
   
} 

標題名稱:利用java怎么樣實現(xiàn)根據(jù)經(jīng)緯度獲取地址-創(chuàng)新互聯(lián)
文章網(wǎng)址:http://weahome.cn/article/dcsjpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部