(一)添加字段
添加对象类型的字段:
String tempJson = new Gson().toJson(object);// 获取json字符串.
JsonObject jsonObject = new JsonParser().parse(tempJson).getAsJsonObject();// 获取json对象
Map<String, Integer> testObject = new HashMap<String, Integer>();
jsonObject.add("testObject", new Gson().toJsonTree(casetypeCount));
(二)移除字段
JsonObject jsonObject = jsonElement.getAsJsonObject();
jsonObject.remove("jsonFeild");// 移除json的该字段