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