I've been trying to figure out how to do some basic stuff in Java..
I've got a request being made to an API, which returns the following JSON.
{"success": false, "message": "some string", "data": []}
This is represented by the String result
in the following:
JsonObject root = new JsonParser().parse(result).getAsJsonObject();
success = root.getAsJsonObject("success").getAsBoolean();
I need to get the "success" parameter as a boolean. Getting an error on the getAsBoolean()
call.
java.lang.ClassCastException: com.google.gson.JsonPrimitive cannot be cast to com.google.gson.JsonObject
What am I doing wrong? How do I get the bool value of "success"?
The reason that is breaking your code is that you are calling the wrong method...
Do
success = root.get("success").getAsBoolean();
instead of
success = root.getAsJsonObject("success").getAsBoolean();
public static void main(String[] args) {
String result = "{\"success\": false, \"message\": \"some string\", \"data\": []}";
JsonObject root = new JsonParser().parse(result).getAsJsonObject();
boolean success = root.get("success").getAsBoolean();
}
you're calling root.getAsJsonObject("success")
while the success
is a boolean value itself, not an object.
Try following
JsonObject root = new JsonParser().parse(result).getAsJsonObject();
success = root.get("success").getAsBoolean();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With