具体情况具体分析,我遇到的情况是这样的:
在put中传参是字符串:
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
public class module1 {
public static void main(String[] args) {
String jsonStr = "{\"username\":\"宋发元\",\"password\":\"123456\",\"age\":\"24\",\"class\":{\"a\":12,\"b\":3}}";
JSONObject j=JSON.parseObject(jsonStr);
String s="{\"a\":12,\"b\":3}";
j.put("class1",s);
System.out.println(j.toJSONString());
}
}
结果是这样的:class1的 值带\转义字符
然后将String转换为json格式put进去
public static void main(String[] args) {
String jsonStr = "{\"username\":\"宋发元\",\"password\":\"123456\",\"age\":\"24\",\"class\":{\"a\":12,\"b\":3}}";
JSONObject j=JSON.parseObject(jsonStr);
String s="{\"a\":12,\"b\":3}";
JSONObject a=JSON.parseObject(s);
j.put("class1",a);
System.out.println(j.toJSONString());
首先,put函数的作用是:如果当前key存在则覆盖value值,如果不存在就创建key并存入value值。
如下:
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
public class mod2 {
public static void main(String[] args) {
String jsonStr = "{\"username\":\"宋发元\",\"password\":\"123456\",\"age\":\"24\",\"class\":{\"a\":12,\"b\":3}}";
JSONObject json= JSON.parseObject(jsonStr);
String s="{\"a\":12,\"b\":3}";
String s1="{\"c\":21}";
JSONObject a=JSON.parseObject(s);
JSONObject b=JSON.parseObject(s1);
System.out.println("没有调用put函数的时候json的值为:" + json.toJSONString());
json.put("class1",a);//put函数就是覆盖class1中的值,如果没有class1就创建一个。
System.out.println("调用put函数,但class1不存在的时候json的值为:" + json.toJSONString());
json.put("class",b);//当class中有值的时候,就覆盖掉当前值。
System.out.println("调用put函数,但class存在的时候json的值为:" + json.toJSONString());
}
}
没有调用put函数的时候json的值为:{"username":"宋发元","age":"24","class":{"b":3,"a":12},"password":"123456"}
调用put函数,但class1不存在的时候json的值为:{"username":"宋发元","class1":{"b":3,"a":12},"age":"24","class":{"b":3,"a":12},"password":"123456"}
调用put函数,但class存在的时候json的值为:{"username":"宋发元","class1":{"b":3,"a":12},"age":"24","class":{"c":21},"password":"123456"}
Process finished with exit code 0
从这里可以看出put的作用
现在,更改class的值但不覆盖,我用了一个笨办法
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
public class mod2 {
public static void main(String[] args) {
String jsonStr = "{\"username\":\"宋发元\",\"password\":\"123456\",\"age\":\"24\",\"class\":{\"a\":12,\"b\":3}}";
JSONObject json= JSON.parseObject(jsonStr);
String s="{\"a\":12,\"b\":3}";
String s1="{\"c\":21}"; StringBuffer s2 = new StringBuffer(json.getJSONObject("class").toJSONString());
System.out.println("获取class的值并将json格式转化为String" + s2);
s2.replace(s2.length()-1,s2.length(),",\"d\":22}");
System.out.println("输出替换后的字符串" + s2);
JSONObject json1=JSON.parseObject(s2.toString());
//parseObject函数的参数必须是String我用Stringbuffer只是为了替换简单
json.put("class",json1);
System.out.println("更改后的json内容" + json.toJSONString());
}
}