I have parsed many such JSONArrays but can anyone help me how to parse this which has the JSONArray- sequence has this type of structure
This is the JSONfile in my res/raw folder -
[
{"sequence":[{"series":[[1823,1793,1812]]},{"series":[[1823,71,1841]]},{"series":[[1823,97]]}], "id":1},
{"sequence":[{"series":[[781,870,864]]},{"series":[[781,2004,816]]},{"series" [[781,933]]}], "id":2}
..
..
]
I parsed it and now in string_sequence
public static HashMap hashmap_id = new HashMap;
try {
JSONArray JSONArray_sequence = new JSONArray(string_sequence);
for (int i = 0; i < JSONArray_sequence.length(); i++) {
JSONObject JSONObject_sequence = JSONArray_sequence.getJSONObject(i);
HashMap sequence_elements = new HashMap();
Vector series_values = new Vector
//I couldnt get the code here.. because the object 'series' is repeating.
//Please help here
//I need to get all the series in the vector
//And Store series_values(Vector) in sequence_elements(HASHMAP)
hashmap_id.put((String)JSONObject_sequence.getString("id").toString(),sequence_elements);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}