iteye_16248 2008-06-19 13:58
浏览 546
已采纳

用json时的一个问题,

假设有一个Person类,
[code="java"]
public class Person{
private java.util.Date birthday;

 // settor and gettor methods.....

}
[/code]

现在客户端那边传来如下的json规则的字符串String personJson = "{birthday:\"06/28/2008 17:00:00\"}",要用

JSONOjbect.toBean(JSONObject.from(personJson ),Person.class)方法来获得相应的Person实例时就出问题了,报错如下:
[code="java"]
2008-6-19 13:57:39 net.sf.json.JSONObject morphPropertyValue
警告: Can't transform property 'birthday' from java.lang.String into java.util.Date. Will register a default Morpher
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
信息: Property 'java.util.Date.class' has no write method. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.date' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
信息: Property 'java.util.Date.day' has no write method. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.hours' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.minutes' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.month' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.seconds' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.time' does not exist. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
信息: Property 'java.util.Date.timezoneOffset' has no write method. SKIPPED.
2008-6-19 13:57:39 net.sf.ezmorph.bean.BeanMorpher morph
警告: Property 'java.lang.String.year' does not exist. SKIPPED.
Person's brithday: Thu Jun 19 13:57:39 CST 2008

[/code]

这个怎么解决?

以下是我做实验用的Java代码:

[code="java"]
package json;

import java.util.Date;

import net.sf.json.JSONObject;

public class Person {
private Date birthday;

public Date getBirthday() {
    return birthday;
}

public void setBirthday(Date birthday) {
    this.birthday = birthday;
}

public static Person getInstance(String jsonVale) {
    return (Person)JSONObject.toBean(JSONObject.fromObject(jsonVale),Person.class);
}

public static void main(String[] args) {
    String personJson = "{birthday:\"06/28/2008 17:00:00\"}";

    Person p = getInstance(personJson);

    System.out.println("Person's brithday: "+ p.getBirthday());
}

}

[/code]

[b]问题补充:[/b]
To ham:
你所说的那个方案是针对 bean --> Json的,而现在的问题是从Json到Bean.
[b]问题补充:[/b]
多谢各位的帮忙,现在这个问题解决了,也就是在toBean前加一句话:JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[] {"MM/dd/yyyy HH:mm:ss"}) );来配置记下Date转化时的Morpher就OK了,大家有兴趣的话可以试下.

Thanks a lot!

  • 写回答

8条回答 默认 最新

  • iteye_17163 2008-06-20 16:54
    关注

    到网上Google了一下午,一点相关的资料都没找到.

    写了一个傻办法,先将就着用吧:
    [code="java"]

    package test;

    import java.util.Date;

    import net.sf.json.JSONObject;

    public class Person {

    private Date birthday;

    public Date getBirthday() {
        return birthday;   
    }   
    
    public void setBirthday(Date birthday) {   
        this.birthday = birthday;   
    }   
    
    public static Person getInstance(String jsonValue) {
        JSONObject obj=JSONObject.fromObject(jsonValue);
    
        //将birthday属性获取到
        String strDate=(String)obj.get("birthday");
        Date newDate=null;
    
        //设置日期转换的格式
        java.text.DateFormat formate = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try {
            newDate = formate.parse(strDate);
        }catch (Exception e) {
            e.printStackTrace();
        }
        //移除原有的birthday属性
        obj.remove("birthday");
        //将日期类型的birthday放到obj中
        obj.put("birthday", newDate);
        return (Person)JSONObject.toBean(obj,Person.class);
    }
    
    public static void main(String[] args) {
        String personJson = "{birthday:\"2008-06-28 17:00:00\"}";
    
        Person p = getInstance(personJson);
    
        System.out.println("Person's brithday: "+p.getBirthday());   
    }
    

    }

    [/code]

    输出结果为:
    [quote]
    Person's brithday: Sat Jun 28 17:00:00 CST 2008
    [color=red]2008-6-20 16:45:11 net.sf.json.JSONObject toBean
    警告: Property 'day' has no write method. SKIPPED.
    2008-6-20 16:45:11 net.sf.json.JSONObject toBean
    警告: Property 'timezoneOffset' has no write method. SKIPPED.[/color]
    [/quote]

    那两个警告好像是因为在toBean()的时候,它把Date对象也当成了一个JSONObject对象进行处理.由于没有set方法而出现的.

    我对java对json的操作也只是处于一知半解的状态,如果写的代码太幼稚.楼主表笑... :oops:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(7条)

报告相同问题?

悬赏问题

  • ¥15 Arcgis相交分析无法绘制一个或多个图形
  • ¥15 seatunnel-web使用SQL组件时候后台报错,无法找到表格
  • ¥15 fpga自动售货机数码管(相关搜索:数字时钟)
  • ¥15 用前端向数据库插入数据,通过debug发现数据能走到后端,但是放行之后就会提示错误
  • ¥30 3天&7天&&15天&销量如何统计同一行
  • ¥30 帮我写一段可以读取LD2450数据并计算距离的Arduino代码
  • ¥15 飞机曲面部件如机翼,壁板等具体的孔位模型
  • ¥15 vs2019中数据导出问题
  • ¥20 云服务Linux系统TCP-MSS值修改?
  • ¥20 关于#单片机#的问题:项目:使用模拟iic与ov2640通讯环境:F407问题:读取的ID号总是0xff,自己调了调发现在读从机数据时,SDA线上并未有信号变化(语言-c语言)