如何在JsonObject java中创建JsonArray和JsonObject

时间:2017-08-11 17:41:08

标签: java arrays json

如何在JsonObject中创建JsonArray和JsonObject

{
  "users": [7, 16, 35],
  "group_id": "askskdjejs139d.."
}

感谢您的帮助:)

2 个答案:

答案 0 :(得分:2)

您可以尝试以下代码:

JSONObject user1 = new JSONObject();
try {
    user1.put("user_id", "7");
    user1.put("group_id", "askskdjejs139d");


} catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

JSONObject user2 = new JSONObject();
try {
    user2.put("user_id", "16");
    user2.put("group_id", "askskdjejs139d");


} catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}


JSONArray jsonArray = new JSONArray();

jsonArray.put(user1);
jsonArray.put(user2);

JSONObject userObj = new JSONObject();
    userObj.put("Users", jsonArray);



String jsonStr = userObj.toString();

    System.out.println("jsonString: "+jsonStr);

答案 1 :(得分:1)

您可以使用 org.json 库。

执行此操作

以下是一些例子:

// Creating a json object
JSONObject jsonObj = new JSONObject();

// Adding elements to json object
jsonObj.put("key", "value"); // the value can also be a json object or a json array

// Creating a json object from an existing json string
JSONObject jsonObj = new JSONObject("Your json string");

// Creating a json array
JsonArray jsonArray = new JsonArray();

// Adding a json object to json object to json Array
jsonArray.add(jsonObj);

// Adding json array as an element of json object
jsonObject.put("key", "<jsonArray>");

您可以调用toString()JsonObject的{​​{1}}方法来获取json对象/数组的JsonArray表示。