Json Array as following is easy to parse,
{
"movieCategories": [
"a" : "Animation",
"b" :"Romance",
"c" :"Science Fiction"
"d" : "Western"
]
}
Now,I have a Json response as following which is stored in movies.json file.
{
"movieCategories": [
"Animation",
"Romance",
"Science Fiction",
"Western"
]
}
I am not sure how to parse the above json array. Kindly help.
Thank you.