Betekent reactie JSON String bevat JSONArray
van JSONObject
. dus converteer JSON String naar JSONArray en herhaal het om alle JSONObjects eruit te halen zoals:
JSONArray array=new JSONArray(json);
JSONObject jsonObject = array.getJSONObject(array.length()-1);
String MiNtimeIn = jsonObject.optString(Configs.TAG_IN);
String MaXtimeOut=jsonObject.optString(Configs.TAG_OUT);
Log.e("A",MiNtimeIn);
Log.e("S", MaXtimeOut);