相信一万行代码的理论!
之前讲过了一期json 对象基本操作 -- 视频讲解,中间对 JSONArray 的操作没讲清楚,特意补了一期视频,欢迎大家多提意见,共同进步。
视频专题:
gitee 地址:https://gitee.com/fanapi/tester
package com.fun;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.fun.frame.SourceCode;
import org.slf4j.Logger;
public class Fun extends SourceCode {
public static Logger logger = getLogger(Fun.class);
public static void main(String[] args) {
JSONObject json = new JSONObject();
json.put("22", "fdskjflsj");
JSONObject jsonObject = new JSONObject();
jsonObject.put("2", 3243);
jsonObject.put("213", 213243);
jsonObject.put("32", 321243);
JSONArray array = new JSONArray();
array.add(jsonObject.clone());
JSONObject clone =(JSONObject) jsonObject.clone();
clone.put("323", "323");
array.add(clone);
array.add(jsonObject.clone());
json.put("array", array);
output(json);
output(json.toString());
String ss = "{\"22\":\"fdskjflsj\",\"array\":[{\"2\":3243,\"213\":213243,\"32\":321243},{\"2\":3243,\"213\":213243,\"323\":\"323\",\"32\":321243},{\"2\":3243,\"213\":213243,\"32\":321243}]}";
JSONObject jsonObject1 = JSONObject.parseObject(ss);
jsonObject1.put("22", "分");
output(jsonObject1);
}
}