Wie kann ich einen JSON mit diesem Format in Android erstellen: Da die API, die ich übergeben werde, JsonArray und dann das Objekt analysiert. Oder wäre es in Ordnung, nur ein JSON-Objekt zu übergeben? Da muss ich nur 1 Transaktion pro Serviceabruf einfügen.
{
"student": [
{
"id": 1,
"name": "John Doe",
"year": "1st",
"curriculum": "Arts",
"birthday": 3/3/1995
},
{
"id": 2,
"name": "Michael West",
"year": "2nd",
"curriculum": "Economic",
"birthday": 4/4/1994
}
]
}
Was ich weiß, ist nur das JSONObject. Wie dieser.
JSONObject obj = new JSONObject();
try {
obj.put("id", "3");
obj.put("name", "NAME OF STUDENT");
obj.put("year", "3rd");
obj.put("curriculum", "Arts");
obj.put("birthday", "5/5/1993");
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Irgendwelche Ideen. Vielen Dank