JSONObject的大型JSON字符串不起作用

时间:2013-08-20 11:34:38

标签: android json jsonobject

protected class saveBtnClickHandler implements OnClickListener{
    @Override
    public void onClick(View v) {
           String jsonRest = loadJsonDataFromURL("http://thirddhaba.appspot.com/api/v1/circle/condensed/data/?circle_id=1");
    try {
            JSONObject jsonObj = new JSONObject(jsonRest);  

        } catch (JSONException e) {
              android.util.Log.e("JSON Parser", "Error parsing data " + e.toString());
        }
    }
}

protected String loadJsonDataFromURL(String url){
     String jsonStr = null;
    try {
         HttpClient httpclient = new DefaultHttpClient();
            HttpResponse response = httpclient.execute(new HttpGet(url));
            StatusLine statusLine = response.getStatusLine();
            if(statusLine.getStatusCode() == HttpStatus.SC_OK){
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                response.getEntity().writeTo(out);
                out.close();
                 jsonStr = out.toString();

            } else{
                //Closes the connection.
                response.getEntity().getContent().close();
                throw new IOException(statusLine.getReasonPhrase());
            }
    } catch (Exception e) {
        // TODO: handle exception
    }
    return jsonStr;
}

enter image description here 上面的代码工作正常。但是此JSON(Link)URL字符串未转换为JSON对象。我认为这是大字符串也添加错误屏幕截图。

2 个答案:

答案 0 :(得分:5)

您的测试数据基于[]包含在数组中。您需要将其解析为json数组而不是json对象。

JSONArray jsonArr = new JSONArray(jsonRest);  

答案 1 :(得分:4)

替换

JSONObject jsonObj = new JSONObject(jsonRest); 

JSONArray jsonArray = new JSONArray(jsonRest);  

我在http://thirddhaba.appspot.com/api/v1/circle/condensed/data/?circle_id=1

检查了JSON

在JSONLint中,我注意到它是JSONArray。

编辑:仅供参考

[]用于JSONArray

{}用于JSONObject。