如何在 Android 中创建这种格式的 JSON: 因为我将要传递的 API 将解析 JsonArray,然后解析对象。 或者只传递一个 json 对象可以吗?因为我只需要在每个服务调用中插入1个事务。
{
"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
}
]
}
我只知道 JSONObject。 就像这个。
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();
}
有什么想法吗,谢谢