I have a following json object, I could able to get plistDate, and pcategory, but I wonder how to parse each image object in the following json.
here is what I have so far
obj = new JSONObject(jsonObject);
listImages = obj.optString("images");
jsonObject
{
"plistDate": "2016-02-19 22:02:41",
"pcategory": "Kategori seciniz",
"images": {
"pimagePath": "products/138_1455940961.jpg",
"pimagePath2": "products/138_1455940961_2.jpg",
"pimagePath3": "products/138_1455940961_3.jpg",
"pimagePath4": "products/138_1455940961_4.jpg",
"pimagePath5": "products/138_1455940961_5.jpg"
}
}