Bedeutet, dass der Antwort-JSON-String JSONArray
enthält von JSONObject
. Konvertieren Sie also JSON String in JSONArray und iterieren Sie dann, um alle JSONObjects daraus zu erhalten, wie:
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);