Null Pointer Exception While Retrieving Json Object
Solution 1:
There are a number of problems in your code although not necessarily all would be directly related to your NullPointerException
...
In your
getJSONFromUrl
method you are usingHttpPost
when it doesn't seem like you're actually posting anything. UseHttpGet
instead.When reading a JSON string from a response, use the
getContentLength()
method ofHttpEntity
to create a byte array such as (example)...byte[] buffer = new byte[contentLength]
and simply read theInputStream
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".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")
Never specify
iso-8859-1
encoding for anything if you can really avoid it.When you create your
Toast
in yourActivity
onCreate(...)
method, you usegetApplicationContext()
. Don't use the application context unless you're really sure of when and where you should use it. In the main body of anActivity's
code you can simply usethis
for theContext
when creating aToast
.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 isnull
make sure whatever code called that method checks fornull
.
Solution 2:
use get instead of getString as:
try {
JSONObject jsona=newJSONObject("{'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");
}
Solution 3:
Carefully see your code
try {
jObj = newJSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON Stringreturn 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();
}
Post a Comment for "Null Pointer Exception While Retrieving Json Object"