4中json解析工具
引用
GsonfastJson
https://www.cnblogs.com/kunpengit/p/4001680.html
Gson将对象转成Json对象的方法
Gsongson=newGson();
Stringjson=gson.toJson(Student.class);
1
2
这种情况,如果Student属性中的某个值包含有=,会变为\u003d的情况
只需将Gson的初始化修改为
Gsongson=newGsonBuilder().disableHtmlEscaping().create();