i have a json like this,
{
"id": 293,
"type": "post",
"slug": "a-box-rd",
"url": "http:\/\/www.godigi.tv\/blog\/2013\/07\/01\/a-box-rd\/",
"status": "publish",
"title": "A Box R&D",
"title_plain": "A Box R&D",
"content": "",
"excerpt": "",
"date": "2013-07-01 09:09:25",
"modified": "2013-07-01 09:18:09",
"categories": [
{
"id": 15,
"slug": "info",
"title": "Info",
"description": "",
"parent": 0,
"post_count": 7
}
],
"tags": [
],
"author": {
"id": 2,
"slug": "eka2013",
"name": "ekawijaya",
"first_name": "",
"last_name": "",
"nickname": "ekawijaya",
"url": "",
"description": ""
},
"comments": [
],
"attachments": [
{
"id": 298,
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd.jpg",
"slug": "rnd",
"title": "rnd",
"description": "",
"caption": "",
"parent": 293,
"mime_type": "image\/jpeg",
"images": {
"full": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd.jpg",
"width": 528,
"height": 493
},
"thumbnail": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-150x150.jpg",
"width": 150,
"height": 150
},
"medium": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-300x280.jpg",
"width": 300,
"height": 280
},
"large": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd.jpg",
"width": 528,
"height": 493
},
"post-thumbnail": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-150x150.jpg",
"width": 150,
"height": 150
},
"custom-small": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-160x90.jpg",
"width": 160,
"height": 90
},
"custom-medium": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-320x180.jpg",
"width": 320,
"height": 180
},
"custom-large": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd-528x360.jpg",
"width": 528,
"height": 360
},
"custom-full": {
"url": "http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd.jpg",
"width": 528,
"height": 493
}
}
}
],
"comment_count": 0,
"comment_status": "open",
"custom_fields": {
"dp_video_poster": [
"http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/rnd.jpg"
],
"views": [
"7"
],
"likes": [
"0"
],
"dp_video_file": [
"http:\/\/www.godigi.tv\/wp-content\/uploads\/2013\/07\/03-A-BOX-RD-ada-pak-bulit.mp4"
]
}
},
and i use the code like this =>
jsonarray = jsonobject.getJSONArray("posts");
for (int i = 0; i < jsonarray.length(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
jsonobject = jsonarray.getJSONObject(i);
JSONObject jsoncustom;
jsoncustom = jsonobject.getJSONObject("custom_fields");
JSONArray araycus = jsoncustom.getJSONArray("dp_video_poster");
String urlvid = araycus.getString(i);
// Retrive JSON Objects
map.put("title", jsonobject.getString("title"));
map.put("date", jsonobject.getString("date"));
map.put("dp_video_poster", urlvid);
// Set the JSON Objects into the array
arraylist.add(map);
}
what i expect for output is :
title =
date =
poster (this is in folder dp_video_poster) =
video (this is in folder dp_video_file) =
can any body help me with this?
thanks in advance