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 - What's the Pythonic way to report nonfatal errors in a parser? -

sql server - Deadlock occuring in Clustered Columnstore index -

php - curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to domain.com:443 -