日期:2014-05-16 浏览次数:20409 次
json的日期转为java的Date类型
?
例如“2012-11-02”格式的json数据转为java.util.Date类型,如果直接转日期有问题,debug发现那个日期是系统当前日期,根本不是json日期转换的,要解决这个问题其实也不难
jar包引入:
json-lib-xxx.jar
ezmorph-xxx.jar
?
//注册一个json转为java.util.date的日期格式
?JSONUtils.getMorpherRegistry().registerMorpher( new DateMorpher(new String[] { "yyyy-MM-dd" }));
?JSONObject.toBean(JSONObject.fromObject(json), Object.class);
??
?
以上为示例代码,第二行的json为json的字符串,object.class为要转的javabean的class,这样日期属性就能转换成json所以显示的日期了