Null Pointer Exception while retrieving JSON object

前端 未结 3 755
既然无缘
既然无缘 2021-01-24 05:35

I am new to JSON. I am using http://pnrapi.appspot.com/ to get the status of a particular train using JSON. But while trying to parse the received object i always get a null poi

相关标签:
3条回答
  • 2021-01-24 06:04

    use get instead of getString as:

    try {
        JSONObject jsona=new JSONObject("{'status': 'INVALID', 'data': 'No results'}");
        String id = (String)jsona.get("status");
        Toast.makeText(DfgdgdfgdfActivity.this, id, Toast.LENGTH_LONG).show();
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    

    EDIT:

    use

    while ((line = reader.readLine()) != null) {
                    sb.append(line);
                }
    

    instead of

    while ((line = reader.readLine()) != null) {
                    sb.append(line + "n");
                }
    
    0 讨论(0)
  • 2021-01-24 06:16

    Carefully see your code

        try {
                jObj = new JSONObject(json);
            } catch (JSONException e) {
                Log.e("JSON Parser", "Error parsing data " + e.toString());
            }
    
            // return JSON String
            return jObj;
    

    In above case if you get any JSONException then you are returning jObj which is not initialized,in short you will return null jObj.

    So you much handle that situation by checking if returned object is null.

    change your code to following

    if (jon != null)
    {
        String id = jon.getString("status");
        Toast.makeText(getApplicationContext(), id, Toast.LENGTH_LONG).show();
    }
    
    0 讨论(0)
  • 2021-01-24 06:19

    There are a number of problems in your code although not necessarily all would be directly related to your NullPointerException...

    1. In your getJSONFromUrl method you are using HttpPost when it doesn't seem like you're actually posting anything. Use HttpGet instead.

    2. When reading a JSON string from a response, use the getContentLength() method of HttpEntity to create a byte array such as (example)...

      byte[] buffer = new byte[contentLength] and simply read the InputStream as...

      inStream.read(buffer). You will need to do error checking along the way of course. In your case you're attempting to read a string line by line and appending "n" to each line. Firstly you don't need to read a JSON string in this way and if you're actually intending to append a newline character (at any time in any Java code), it should be "\n".

    3. To convert your byte array to a usable string for JSON parsing you then simply do the following...

      String jsonString = new String(buffer, "UTF-8")

    4. Never specify iso-8859-1 encoding for anything if you can really avoid it.

    5. When you create your Toast in your Activity onCreate(...) method, you use getApplicationContext(). Don't use the application context unless you're really sure of when and where you should use it. In the main body of an Activity's code you can simply use this for the Context when creating a Toast.

    6. As others have mentioned, make sure you check for a null return everywhere they can possibly happen. If an exception occurs in a method and the return is null make sure whatever code called that method checks for null.

    0 讨论(0)
提交回复
热议问题