json-lib将json格式的字符串,转化为java对象的实例
程序员文章站
2024-03-05 20:11:49
json格式字符串中的日期是按照‘yyyy-mm-dd hh:mm:ss'格式,如果按照常规的转换为对象,该日期则解析成当前系统时间
jsonobject jso...
json格式字符串中的日期是按照‘yyyy-mm-dd hh:mm:ss'格式,如果按照常规的转换为对象,该日期则解析成当前系统时间
jsonobject json = jsonobject.fromobject(data); dispatchplan dp = (dispatchplan)jsonobject.tobean(json, dispatchplan.class);
导致原因jsonobject可能无法识别日期格式,做了以下修改就解决
dispatchplan dp = new dispatchplan(); jsonobject json = jsonobject.fromobject(data); string[] dateformats = new string[] {"yyyy-mm-dd hh:mm:ss"}; jsonutils.getmorpherregistry().registermorpher(new datemorpher(dateformats)); dp = (dispatchplan)jsonobject.tobean(json, dispatchplan.class);
下面我们来讨论一个问题:
将要转化复杂类型的对象的时候,有点需要注意的地方。
例子如下:
public class a { private list<b> list; public list<b> getlist() { return list; } public void setlist(list<b> list) { this.list = list; } public static void main(string[] args) { jsonobject json = jsonobject.fromobject("{list:[{name:'tom',age:999}]}"); a j = (a) jsonobject.tobean(json, a.class); system.out.println(j); } } class b { private int age; private string name; public int getage() { return age; } public void setage(int age) { this.age = age; } public string getname() { return name; } public void setname(string name) { this.name = name; } }
执行之后 a对象的list里装的不是b对象 而是morphdynabean?如何让json对象直接封装成需要的bean对象?
答案如下:
你需要在jsonobject.tobean的时候把list的元素类型当成参数传进去。代码如下,你肯定看得懂
map<string, class> classmap = new hashmap<string, class>(); classmap.put("list", b.class); a j = (a) jsonobject.tobean(json, a.class,classmap);
以上这篇json-lib将json格式的字符串,转化为java对象的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。