要添加元素到JsonObject中,可以使用put方法。具體操作如下:
JsonObject jsonObject = new JsonObject();
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
jsonObject.put("key3", 123);
jsonObject.put("key4", true);
完整示例代碼如下:
import org.json.JSONObject;
public class Main {
public static void main(String[] args) {
// 創建一個空的JsonObject對象
JSONObject jsonObject = new JSONObject();
// 添加元素
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
jsonObject.put("key3", 123);
jsonObject.put("key4", true);
// 打印JsonObject
System.out.println(jsonObject.toString());
}
}
輸出結果:
{"key1":"value1","key2":"value2","key3":123,"key4":true}