2021-09-17

Json字符串序列化与反序列化

JsonObject test = new JsonObject();
 test.add("dataSetInfo", new Gson().toJsonTree(dataSetInfoDo));
 test.add("statics", new Gson().toJsonTree(result));
 String test2 = test.toString();
 kafkaTemplate.send("T_Aicloud_Annotation_PublishEvent", test2);
 JsonObject test3 = new Gson().fromJson(test2, JsonObject.class);
 JsonObject test4 = test3.getAsJsonObject("dataSetInfo");
 DataSetInfoDo dataSetInfo = new Gson().fromJson(test4, DataSetInfoDo.class);

你可能感兴趣的:(java,java)