1JSONArray array = new JSONArray();
2
3// Create a new JSONObject for every Aufgabe from ArrayList
4for(Aufgabe a : aufgaben) {
5 JSONObject o = new JSONObject();
6 o.put("id", a.getId());
7 o.put("aufgabe", a.getAufgabe());
8 o.put("beschreibung", a.getBeschreibung());
9 o.put("zeit", a.getZeit());
10 array.put(o);
11}