Rahul
Rahul

Reputation: 45

how to parse json having multiple values

I am trying to parse a json

{"objects":[{"obimages":["obj_icon\/133431837745.jpg","obj_icon\/1334318377319.jpg","obj_icon\/1334318378384.jpg","obj_icon\/1334318378ajmer21.jpg","obj_icon\/1334318378df.jpg"]}
}

i have to get the values in "obimages" individually. can any one please help me.

Upvotes: 0

Views: 1655

Answers (2)

Aerrow
Aerrow

Reputation: 12134

Refer this site, this will explain how to parse a jason link, http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

Upvotes: 1

Mus
Mus

Reputation: 1860

Use the classes JSONObject and JSONArray to parse JSON

Upvotes: 1

Related Questions