📜  new jsonobject java - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:19.388000             🧑  作者: Mango

代码示例1
String message;
JSONObject json = new JSONObject();
json.put("name", "student");

JSONArray array = new JSONArray();
JSONObject item = new JSONObject();
item.put("information", "test");
item.put("id", 3);
item.put("name", "course1");
array.add(item);

json.put("course", array);

message = json.toString();

// message
// {"course":[{"id":3,"information":"test","name":"course1"}],"name":"student"}