Come posso rilevare quando un valore json è nullo? ad esempio: [{"username": null}, {"username": "null"}]
Il primo caso rappresenta un nome utente inesistente e il secondo un utente denominato "null". Ma se provi a recuperarli entrambi i valori risultano nella stringa "null"
JSONObject json = new JSONObject("{\"hello\":null}");
json.put("bye", JSONObject.NULL);
Log.e("LOG", json.toString());
Log.e("LOG", "hello="+json.getString("hello") + " is null? "
+ (json.getString("hello") == null));
Log.e("LOG", "bye="+json.getString("bye") + " is null? "
+ (json.getString("bye") == null));
L'output del registro è
{"hello":"null","bye":null}
hello=null is null? false
bye=null is null? false
has(java.lang.String);
metodo