Sergey
Sergey

Reputation: 8071

How to deserialise Json object into android class?

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

Answers (1)

jsaye
jsaye

Reputation: 914

There are several options, i recomend you this one: http://code.google.com/p/google-gson/

Upvotes: 1

Related Questions