Come posso creare un JSON con questo formato in Android: poiché l'API che passerò analizzerà JsonArray, quindi l'oggetto. O andrebbe bene se passasse solo un oggetto json? Dal momento che dovrò solo inserire 1 transazione per chiamata di servizio.
{
"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
}
]
}
Quello che so è solo JSONObject. Come questo.
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();
}
Qualche idea. Grazie