在JSONArray中创建一个JSONObject (JSON-Simple / JAVA)
在JSON-Simple库中,可以使用以下步骤在JSONArray中创建一个JSONObject:
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
JSONArray jsonArray = new JSONArray();
JSONObject jsonObject = new JSONObject();
jsonArray.add(jsonObject);
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
完整的示例代码如下:
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
public class Main {
public static void main(String[] args) {
JSONArray jsonArray = new JSONArray();
JSONObject jsonObject = new JSONObject();
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
jsonArray.add(jsonObject);
System.out.println(jsonArray.toJSONString());
}
}
以上代码创建了一个JSONArray对象,并在其中创建了一个JSONObject对象,然后将JSONObject对象添加到JSONArray中。最后,使用toJSONString()
方法将JSONArray对象转换为JSON字符串并打印输出。
这个方法适用于在JAVA中使用JSON-Simple库创建JSONArray和JSONObject对象。JSON-Simple是一个轻量级的JSON处理库,适用于简单的JSON操作。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云