json - Compare value of JSONObject with boolean value -


i have jsonobject having key identified , value true or false(boolean). next time have check whether key true or false doing this:

jsonobject eachcasejsonobject = new jsonobject(); eachcasejsonobject.put("json_is_identified", true);

now want check value of key json_is_identified , doing :

"true".equalsignorecase(eachcasejsonobject.get(json_is_identified).tostring())

but want boolean value directly using key json_is_identified , have check true or false.

you can use:

eachcasejsonobject.getboolean("json_is_identified") 

Comments

Popular posts from this blog

python - Best design pattern for collection of objects -

go - serving up pdfs using golang -

python - django admin: changing the way a field (w/ relationship to another model) is submitted on a form so that it can be submitted multiple times -