json与对象转换工具类

时间:2021-01-04 04:21:31
【文件属性】:
文件名称:json与对象转换工具类
文件大小:2KB
文件格式:JAVA
更新时间:2021-01-04 04:21:31
json与对象 同样先将json字符串转换为json对象,再将json对象转换为java对象,如下所示。 JSONObject obj = new JSONObject().fromObject(jsonStr);//将json字符串转换为json对象 将json对象转换为java对象 Person jb = (Person)JSONObject.toBean(obj,Person.class);//将建json对象转换为Person对象

网友评论