I am trying to parse JSON file generated from ColdFusion server in SerializeJSON format. Is there any specific way to parse the JSON file. It is different than normal Twitter Feed JSON file. How to parse the JSON file in such a format ? I am using SBJSON File for parsing this.
{
"COLUMNS": [
"ID",
"TITLE",
"CLASS_START",
"CLASS_END",
],
"DATA": [
[
"7f9f3601",
"Test ",
"October, 25 2011 00:00:00",
"October, 25 2011 00:00:00",
],
[
"5500a26b",
"ABC ",
"October, 26 2011 14:47:00",
"October, 27 2011 14:47:00",
]
]
}