Hello friends i am new in android . and i am trying to execute json but i dont knw how to parse this json responce.. please help me
thanks in advance .
json responce :
{"0":{ "id":"24", "booking_id":"08140001", "user_id":"20140620015800-127001OxL72Vdk5j", "order_id":"4884c1fc-2a82-11e4-a5bf-22000a989249", "points":"340", "want_to_say":"", "reason":"Business", "checkindate":"2014-10-30 00:00:00", "checkoutdate":"2014-10-31 00:00:00", "first_name":"milan", "last_name":"patel", "email":"[email protected]", "phone":"1234567980", "mobile":"1234567890", "country":"IN", "state":"Gujarat", "address":"ahmedabad", "city":"Ahmedabad", "zip_code":"123456", "payment":"0", "ddate_time":"2014-08-23 06:59:27", "credit_card_number":null, "cvv":null, "expiry_date":null, "language_id":"1" }, "1":{ "id":"24", "booking_id":"08140001", "user_id":"20140620015800-127001OxL72Vdk5j", "order_id":"4884c1fc-2a82-11e4-a5bf-22000a989249", "points":"340", "want_to_say":"", "reason":"Business", "checkindate":"2014-10-30 00:00:00", "checkoutdate":"2014-10-31 00:00:00", "first_name":"milan", "last_name":"patel", "email":"[email protected]", "phone":"1234567980", "mobile":"1234567890", "country":"IN", "state":"Gujarat", "address":"ahmedabad", "city":"Ahmedabad", "zip_code":"123456", "payment":"0", "ddate_time":"2014-08-23 06:59:27", "credit_card_number":null, "cvv":null, "expiry_date":null, "language_id":"1" }}
Have you tried using Google's GSON?
Here's the link to the project: https://github.com/google/gson
The downlaod page: http://search.maven.org/#artifactdetails%7Ccom.google.code.gson%7Cgson%7C2.3.1%7Cjar
And a sample code to parse your JSON:
YourObject
should look something like this:Just a heads-up: If any of the Json elements have a
null
or an empty value, even though they are primarily anint
in yourYourObject
class, it is best to declare them asString
to avoidjava.lang.NumberFormatException
.