Following is the JSON response I got from server. I don't understand how to parse it and store it in a SQLite database on Android. I have seen many parsing methods, but I am new to JSON and I am confused with these methods.
The JSON response is the time-table of a class. Can anyone help me out with this JSON response?
[
{
"day": "friday",
"8-9": "JAVA TUT(B2)",
"9-10": "JAVA TUT(B2)",
"10:15-11:15": "JAVA TUT(B2)",
"11:15-12:15": "DBMS",
"12:30-1:30": "LUNCH-BREAK",
"1:30-2:30": "OS",
"2:45-3:45": "DC",
"3:45-4:45": "JAVA"
},
{
"day": "monday",
"8-9": "----",
"9-10": "DBMS LAB(B1)/SS LAB(B2)",
"10:15-11:15": "DBMS LAB(B1)/SS LAB(B2)",
"11:15-12:15": "DBMS LAB(B1)/SS LAB(B2)",
"12:30-1:30": "LUNCH-BREAK",
"1:30-2:30": "DC",
"2:45-3:45": "SS",
"3:45-4:45": "---"
},
{
"day": "saturday",
"8-9": "OS",
"9-10": "----",
"10:15-11:15": "----",
"11:15-12:15": "----",
"12:30-1:30": "----",
"1:30-2:30": "----",
"2:45-3:45": "----",
"3:45-4:45": "----"
},
{
"day": "thursday",
"8-9": "SS",
"9-10": "DBMS",
"10:15-11:15": "OS",
"11:15-12:15": "FOSE",
"12:30-1:30": "LUNCH-BREAK",
"1:30-2:30": "MP LAB(B2)/JAVA TUT(B1)",
"2:45-3:45": "MP LAB(B2)/JAVA TUT(B1)",
"3:45-4:45": "MP LAB(B2)/JAVA TUT(B1)"
},
{
"day": "tuesday",
"8-9": "MP LAB(b2)",
"9-10": "MP LAB(b2)",
"10:15-11:15": "MP LAB(b2)",
"11:15-12:15": "DBMS",
"12:30-1:30": "LUNCH-BREAK",
"1:30-2:30": "FOSE",
"2:45-3:45": "DC",
"3:45-4:45": "OS"
},
{
"day": "wednesday",
"8-9": "FOSE",
"9-10": "SS",
"10:15-11:15": "JAVA",
"11:15-12:15": "DBMS",
"12:30-1:30": "LUNCH-BREAK",
"1:30-2:30": "SS LAB(b1)/DBMS LAB(B2)",
"2:45-3:45": "SS LAB(b1)/DBMS LAB(B2)",
"3:45-4:45": "SS LAB(b1)/DBMS LAB(B2)"
}
]