Possible Duplicate:
JSON Array iteration in Android/Java
I am developing an app where i am using the following JSONWeb Services Code. Everything is working good and getting response as JSON Array. I am not having any idea how to convert JSON Array to string. The response i am getting is in the following pattern..
Json Respone
[
{
"Id":101,
"Movie":"xxxxx",
"Available":
[
{
"date":"31-08-2012",
"timings":
[
"10:15",
"10:30",
"10:40"
]
},
{
"date":"1-09-2012",
"timings":
[
"10:15",
"10:30",
"10:40"
]
}
]
}
]
This is the response i am getting. Can anyone suggest me how to convert the following Json Response to string in android and i want to display that data in listview in android native.