JSON handling with org.json:
*Create a JSON String with null value.
If you need to produce a JSON string with a value of null like this:
{
"name":null
}
Then you have to use the special constant JSONObject.NULL.
Functioning example:
jsonObject.put("name", JSONObject.NULL);