1.JSON对象转java对象
(如果需要将某个类转成Json串的话,那么必须要求其属性为public,或者提供public的get()方法。注意:必须要是public 的get()方法。)
FundReportQueryEntity fundReportQueryEntity=
(FundReportQueryEntity)JSONObject.toBean(datas, undReportQueryEntity.class);
2.TA系统中java生成UUID
fundReportQueryEntity.setId(UUIDGenerator.getUUID());
3:在把对象转JSONObject时 应该使用: google的Gson反序列化,这样可以避免数值类型的精度丢失
JSonObject jsonObject = new Gson().fromJson(backVal,JSONObject.class);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)