Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)"
  }
]
share|improve this question
The google-gson library is also a good JSON parser: code.google.com/p/google-gson – Jon Adams Nov 20 '12 at 13:56

closed as not a real question by Ram kiran, Nik...., Mischa, Jla, Frank van Puffelen Nov 20 '12 at 14:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can parse your json string as:

JSONArray jarray = new JSONArray("Your JSON String Here");

for (int i=0; i < jarray.length(); i++)
{
  JSONObject oneObject = jArray.getJSONObject(i);
  // Pulling items from the array
   String strday = oneObject.getString("day");
   String strone = oneObject.getString("8-9");
   String strttwo = oneObject.getString("9-10");
   String strthree = oneObject.getString("10:15-11:15");
   //your rest code here...
}

and for storing values in Database you can see following tutorials :

http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

http://www.vogella.com/articles/AndroidSQLite/article.html

http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.