Android擷取GPS進行定位的工具類

來源:互聯網
上載者:User
package com.maxtech.common.gps;import java.io.BufferedReader;import java.io.InputStreamReader;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.json.JSONArray;import org.json.JSONObject;import android.app.Activity;import android.content.Context;import android.net.wifi.WifiManager;import android.telephony.TelephonyManager;import android.telephony.gsm.GsmCellLocation;public abstract class IAddressTask {        protected Activity context;        public IAddressTask(Activity context) {                this.context = context;        }        public abstract HttpResponse execute(JSONObject params) throws Exception;        public MLocation doWifiPost() throws Exception {                return transResponse(execute(doWifi()));        }        public MLocation doApnPost() throws Exception {                return transResponse(execute(doApn()));        }        public MLocation doGpsPost(double lat, double lng) throws Exception {                return transResponse(execute(doGps(lat, lng)));        }        private MLocation transResponse(HttpResponse response) {                MLocation location = null;                if (response.getStatusLine().getStatusCode() == 200) {                        location = new MLocation();                        HttpEntity entity = response.getEntity();                        BufferedReader br;                        try {                                br = new BufferedReader(new InputStreamReader(                                                entity.getContent()));                                StringBuffer sb = new StringBuffer();                                String result = br.readLine();                                while (result != null) {                                        sb.append(result);                                        result = br.readLine();                                }                                JSONObject json = new JSONObject(sb.toString());                                JSONObject lca = json.getJSONObject("location");                                location.Access_token = json.getString("access_token");                                if (lca != null) {                                        if (lca.has("accuracy"))                                                location.Accuracy = lca.getString("accuracy");                                        if (lca.has("longitude"))                                                location.Latitude = lca.getDouble("longitude");                                        if (lca.has("latitude"))                                                location.Longitude = lca.getDouble("latitude");                                        if (lca.has("address")) {                                                JSONObject address = lca.getJSONObject("address");                                                if (address != null) {                                                        if (address.has("region"))                                                                location.Region = address.getString("region");                                                        if (address.has("street_number"))                                                                location.Street_number = address                                                                                .getString("street_number");                                                        if (address.has("country_code"))                                                                location.Country_code = address                                                                                .getString("country_code");                                                        if (address.has("street"))                                                                location.Street = address.getString("street");                                                        if (address.has("city"))                                                                location.City = address.getString("city");                                                        if (address.has("country"))                                                                location.Country = address.getString("country");                                                }                                        }                                }                        } catch (Exception e) {                                e.printStackTrace();                                location = null;                        }                }                return location;        }        private JSONObject doGps(double lat, double lng) throws Exception {                JSONObject holder = new JSONObject();                holder.put("version", "1.1.0");                holder.put("host", "maps.google.com");                holder.put("address_language", "zh_CN");                holder.put("request_address", true);                JSONObject data = new JSONObject();                data.put("latitude", lat);                data.put("longitude", lng);                holder.put("location", data);                return holder;        }        private JSONObject doApn() throws Exception {                JSONObject holder = new JSONObject();                holder.put("version", "1.1.0");                holder.put("host", "maps.google.com");                holder.put("address_language", "zh_CN");                holder.put("request_address", true);                TelephonyManager tm = (TelephonyManager) context                                .getSystemService(Context.TELEPHONY_SERVICE);                GsmCellLocation gcl = (GsmCellLocation) tm.getCellLocation();                int cid = gcl.getCid();                int lac = gcl.getLac();                int mcc = Integer.valueOf(tm.getNetworkOperator().substring(0, 3));                int mnc = Integer.valueOf(tm.getNetworkOperator().substring(3, 5));                JSONArray array = new JSONArray();                JSONObject data = new JSONObject();                data.put("cell_id", cid);                data.put("location_area_code", lac);                data.put("mobile_country_code", mcc);                data.put("mobile_network_code", mnc);                array.put(data);                holder.put("cell_towers", array);                return holder;        }        private JSONObject doWifi() throws Exception {<br />        JSONObject holder = new JSONObject();        holder.put("version", "1.1.0");        holder.put("host", "maps.google.com");        holder.put("address_language", "zh_CN");        holder.put("request_address", true);                WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);                if(wifiManager.getConnectionInfo().getBSSID() == null) {            throw new RuntimeException("bssid is null");        }                JSONArray array = new JSONArray();        JSONObject data = new JSONObject();        data.put("mac_address", wifiManager.getConnectionInfo().getBSSID());          data.put("signal_strength", 8);          data.put("age", 0);          array.put(data);        holder.put("wifi_towers", array);                return holder;    }        public static class MLocation {                public String Access_token;                public double Latitude;                public double Longitude;                public String Accuracy;                public String Region;                public String Street_number;                public String Country_code;                public String Street;                public String City;                public String Country;                @Override                public String toString() {                        StringBuffer buffer = new StringBuffer();                        buffer.append("Access_token:" + Access_token + "\n");                        buffer.append("Region:" + Region + "\n");                        buffer.append("Accuracy:" + Accuracy + "\n");                        buffer.append("Latitude:" + Latitude + "\n");                        buffer.append("Longitude:" + Longitude + "\n");                        buffer.append("Country_code:" + Country_code + "\n");                        buffer.append("Country:" + Country + "\n");                        buffer.append("City:" + City + "\n");                        buffer.append("Street:" + Street + "\n");                        buffer.append("Street_number:" + Street_number + "\n");                        return buffer.toString();                }        }} 
Android相關內容:
  • 求android http下載的簡單例子
  • OnItemClickListener中的position和id有什麼區別
  • 200M的CPU能跑Android嗎
  • ANDROID系統可以通過藍芽傳輸檔案嗎?
  • Android系統有股票行情軟體嗎?


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.