Create a JSON String with null value.
suggest changeIf 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);
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents