简体   繁体   English

Json Array在Android中解析时返回null

[英]Json Array returning null while parsing in Android

I know this is a very commonly asked question and I found quite a lotta posts in SO. 我知道这是一个非常常见的问题,因此在SO中找到了很多文章。 My code is as below and I don't see a reason why the json array is returning null. 我的代码如下,我看不到json数组返回null的原因。 Could someone please review it for me please? 有人可以帮我复习一下吗? I've left no stones left unturned! 我不遗余力! :( :(

JsonArray jsonArr = JSONfunctions.getJSONfromURL(url);
    try {
        if (jsonArr != null) {
            for (int i = 0; i < jsonArr.length(); i++) {
                HashMap<String, String> map = new HashMap<String, String>();
                JSONObject jsonObj = jsonArr.getJSONObject(i);

                map.put(TAG_CODE, jsonObj.getString("Code"));
                map.put(TAG_DISPLAY_NAME, jsonObj.getString("UserName"));
                map.put(TAG_PROGRAM_NAME, jsonObj.getString("Password"));
                mylist.add(map);
            }
        }
    } catch (JSONException e) {
        Log.e("log_tag", "Error parsing data " + e.toString());
    }                                                                                      






public class JSONfunctions {

public static JSONArray getJSONfromURL(String url) {
    InputStream is = null;
    String result = "";
    JSONArray jArray = null;

    // http post
    try {

        HttpClient httpclient = new DefaultHttpClient();
        HttpGet httppost = new HttpGet(url);
        // httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        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();

                // Result is always returning me an array.(not null)

    } catch (Exception e) {
        Log.e("log_tag", "Error converting result " + result);
    }
    try {
        jArray = new JSONArray(result);

                // Goes into the catch block

    } catch (JSONException e) {
        // TODO Auto-generated catch block
        Log.e("log_tag", "Error parsing result " + result);
    }
    return jArray;

}

} }

What the server is returning ( {"FirstName": "\\"firstname"", "LastName": "\\"lastname\\"", "Code": "\\"id\\""} ) is a JSONObject and not a JSONArray, you should change 服务器返回的内容( {"FirstName": "\\"firstname"", "LastName": "\\"lastname\\"", "Code": "\\"id\\""} )是一个JSONObject而不是JSONArray ,您应该更改

JSONArray jArray = null;

in

JSONOBject jArray = null;

and

jArray = new JSONArray(result);

in

jArray = new JSONOBject (result);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM