Reputation: 17185
I have a JSON string inside a string variable like this:
[{"user_id":"123","email":"[email protected]","lat":"40.748329","lng":"-73.996223",
"first_name":"Alex","last_name":"Genadinik"}]
Is there a way to just very quickly extract all the values using java? While googleing, I am running into very bulky and code-heavy examples that makes me think there must be a simpler way.
Thanks!
Upvotes: 2
Views: 104