json中增加转义字符““

一、使用 org.json.JSONObject,将第一个json对象转string之后,塞到第二个对象中,会自动加上转义字符。

import org.json.JSONObject;

public class Test {

	public static void main(String[] args) throws Exception {
		
		JSONObject json = new JSONObject();
		json.put("name", "123");
		
		JSONObject json2 = new JSONObject();
		json2.put("name2", "456");
		json2.put("json", json.toString());// 这里会自动加上转义字符
		System.out.println(json2);
	}
}

 结果:{"json":"{"name":"123"}","name2":"456"}

二、若是用 net.sf.json.JSONObject,则无论这里 json2.put("json", json.toString()); 有没有转string,都会以json对象的形式。

import net.sf.json.JSONObject;

public class Test {

	public static void main(String[] args) throws Exception {
		
		JSONObject json = new JSONObject();
		json.put("name", "123");
		
		JSONObject json2 = new JSONObject();
		json2.put("name2", "456");
		json2.put("json", json);
		System.out.println(json2);
        
        json2.put("json", json.toString());
		System.out.println(json2);
	}
}

结果:{"name2":"456","json":{"name":"123"}}
{"name2":"456","json":{"name":"123"}}