Bir json değerinin boş olduğunu nasıl tespit edebilirim? örneğin: [{"kullanıcı adı": null}, {"kullanıcı adı": "boş"}]
İlk durum var olmayan bir kullanıcı adını ve ikincisi "boş" adlı bir kullanıcıyı temsil eder. Ancak bunları almaya çalışırsanız, her iki değer de "null" dizesiyle sonuçlanır
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));
Günlük çıktısı
{"hello":"null","bye":null}
hello=null is null? false
bye=null is null? false
has(java.lang.String);
yöntemi