3

下载 JSON 数组时,它会切断字符串的 1/4,它非常大 - 但它应该获取整个字符串。

LogCat 中没有抛出任何错误。这是我正在使用的方法,我已经通过它几次,看不出它被切断的原因。不过,我对此很陌生。

public static JSONArray getJSONfromURL(String url){

    //initialize
    InputStream is = null;   
    String result = "";   
    JSONArray jArray = null;

    //http post
    try {

        HttpClient httpclient = new DefaultHttpClient();   
        HttpPost httppost = new HttpPost(url);    
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();

        is = entity.getContent();    

    } catch (Exception e) {
        Log.e("log_tag", "Error in http connection "+e.toString());   
    }
    //convert response to string

    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");
        }

        is.close();
        result=sb.toString();

    } catch (Exception e) {    
        Log.e("log_tag", "Error converting result "+e.toString());
    }
    //try parse the string to a JSON object

    try {
        Log.d("log_tag", "jresult: " + result + "finish");
        jArray = new JSONArray(result);

        //Log.e("log_tag", "result: " + jArray.toString());

    } catch (JSONException e) {
        Log.e("log_tag", "Error parsing data "+e.toString());
    }

    return jArray;
}

我想一旦这个被破解,我就会被设置。我也会把它作为一个类在未来的项目中使用,所以我不必继续重建它!

编辑:对于应将标记添加到地图的循环:

try{
        for(int i=0;i<arrayResultFromURL.length();i++){
            JSONObject json_data = arrayResultFromURL.getJSONObject(i);

            // assign attributes from the JSON string to local variables
            String id =json_data.getString("id");
            String title =json_data.getString("title");
            String strap =json_data.getString("strap");
            Double lat = (double) json_data.getDouble("lat");
            Double lon = (double) json_data.getDouble("long");

            theMap.addMarker(new MarkerOptions()
            .position(new LatLng(lat, lon))
            .title(title)
            .snippet(strap));
        }
    }catch (Exception e){
        Log.e("log_tag", "error in array: " + e.toString());
    }
4

2 回答 2

1

也许您的问题来自您处理响应对象的方式。检查这个线程

如果不是,请先尝试检查响应的大小,看看您是否收到了全部。

httpResponse.getEntity().getContentLength()

另外以防万一您不知道有一个很好的库(自从我发现它以来我一直在使用它)可以简化 json 解析,请在此处查看

于 2013-06-28T15:39:50.780 回答
0

这些类型的事情最好由 GSON 或 Jackson 等库来完成

此外,如果您的目标是创建JSONArray,则有一个构造函数接受JSONTokener。JSONTokener 可以反过来从您的 InputStream 构造。

于 2013-06-28T15:57:47.057 回答