Reputation: 8071
I have JSON object like "{ FirstName: Sergey, LastName: Petrov, Sex: Male }"
And I have class with these names in the android application.
How to deserialize this JSON object into class in the android applications.
Thank you in advance!
Upvotes: 0
Views: 45
Reputation: 914
There are several options, i recomend you this one: http://code.google.com/p/google-gson/
Upvotes: 1