3

GoogleマップAPIを使用して、いくつかのポイント間をルーティングしています(Google APIにそれらの道路パスを要求しています)..

大多数のプロセスでは正常に機能していますが、JSONException: Index 0 out of range [0..0) が発生し、JSONArray("routes") で getJSONObject(0) を試行しているときに、アプリが道路パスを失う可能性があります。

このアプリをテストするときにWiFi接続のある実際のデバイスを使用していますが、これは問題ではないと思います..

ここに私のもののいくつか..

非同期タスクで

protected void onProgressUpdate(String... progress) {
            super.onProgressUpdate();
            if (progress != null)
                drawPath(progress[0],color);
        }

        @Override
        protected String doInBackground(Void... params) {
            for (int i = 0; i < route_.size() - 1; i++) {
                String url = jsonParser.makeURL(route_.get(i).latitude,
                        route_.get(i).longitude, route_.get(i + 1).latitude,
                        route_.get(i + 1).longitude);
                //Log.i(TAG, i +" Asynctask : " + url);
                JSONParser jParser = new JSONParser();
                String json = jParser.getJSONFromUrl(url);
                publishProgress(json);
            }
            return "";
        }

URLメーカー

public String makeURL(double sourcelat, double sourcelog, double destlat,
            double destlog) {
        StringBuilder urlString = new StringBuilder();
        urlString.append("http://maps.googleapis.com/maps/api/directions/json");
        urlString.append("?origin=");// from
        urlString.append(Double.toString(sourcelat));
        urlString.append(",");
        urlString.append(Double.toString(sourcelog));
        urlString.append("&destination=");// to
        urlString.append(Double.toString(destlat));
        urlString.append(",");
        urlString.append(Double.toString(destlog));
        urlString.append("&sensor=false&mode=driving&alternatives=false"); //Log.d(TAG, urlString.toString());
        return urlString.toString();
    }

JSON フォーム URL の取得

public String getJSONFromUrl(String url) {
        // Making HTTP request
        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            json = sb.toString();
            is.close();
        } catch (Exception e) {
            Log.e(TAG, "Buffer Error converting result " + e.toString());
        }
        return json;
    }



public List<LatLng> decodePoly(String encoded) {
    List<LatLng> poly = new ArrayList<LatLng>();
    int index = 0, len = encoded.length();
    int lat = 0, lng = 0;

    while (index < len) {
        int b, shift = 0, result = 0;
        do {
            b = encoded.charAt(index++) - 63;
            result |= (b & 0x1f) << shift;
            shift += 5;
        } while (b >= 0x20);
        int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
        lat += dlat;

        shift = 0;
        result = 0;
        do {
            b = encoded.charAt(index++) - 63;
            result |= (b & 0x1f) << shift;
            shift += 5;
        } while (b >= 0x20);
        int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
        lng += dlng;

        LatLng p = new LatLng(((lat / 1E5)), ((lng / 1E5)));
        poly.add(p);
    }
    return poly;
}

描画パス

public void drawPath(String result , int color) {
        try {
            final JSONObject json = new JSONObject(result);  
            calcuDistTime(json);
            JSONArray routeArray = json.getJSONArray("routes");Log.d(TAG, "JSON Len " + routeArray.length());
            JSONObject routes;
            routes = routeArray.getJSONObject(0); <<< HERE THE PROBLEM org.json.JSONException: Index 0 out of range [0..0)
            JSONObject overviewPolylines = routes
                    .getJSONObject("overview_polyline");
            String encodedString = overviewPolylines.getString("points");
            List<LatLng> list = jsonParser.decodePoly(encodedString);
            for (int z = 0; z < list.size() - 1; z++) {
                LatLng src = list.get(z);
                LatLng dest = list.get(z + 1);
                map.addPolyline(new PolylineOptions()
                        .add(new LatLng(src.latitude, src.longitude),
                                new LatLng(dest.latitude, dest.longitude))
                        .width(8).color(color).geodesic(true));
                // Log.d(TAG, z + "DRAW POLYLINE : " + list.get(z).toString());
            }

        } catch (JSONException e) {
            Log.w(TAG, e.toString());
        }
    }

一部の道路パスを失う

routeArray.getJSONObject(0) が JSONException: Index 0 out of range [0..0) を取得したときに失敗しました。アプリが上記のようなパスを失う可能性があります..

どちらを変更する必要があるか教えてください:(

よろしくお願いします..

編集: JSONObject を印刷した後、問題は {"status":"OVER_QUERY_LIMIT","routes":[]} です..これが私の問題がランダムに好きな理由です.とても悲しい:(..

それを解決する方法は?

何かトリック?

4

0 に答える 0