I'm getting this json string info from the server :
{"members":[["sd2840d","Johny"],["jkld341","Marry"]]}
So I store in in variable :
js = "{\"members\":[[\"sd2840d\",\"Johny\"],[\"jkld341\",\"Marry\"]]}";
and create json object
json = new JSONObject(js);
Naturally I have many occurences of members, each member has something like identifier sd2840d
and name Johny
both strings, how can I create for loop or foreach loop that will print out .. this is identifier sd2840d
and this is name Johny
, so on for Marry etc. tnx