ReflectPoint pt = new ReflectPoint(5, 9);
ReflectPoint 类里面有birthday成员变量及get/set方法
BeanUtils.setProperty(pt, "birthday.time", "1900-25-12");
System.out.println(BeanUtils.getProperty(pt, "birthday"));
我是想把“1900-25-12"给打印出来,但是出来的结果为啥都是”Thu Jan 01 08:00:00 CST 1970“呢?
后面的值为什么没有赋值成功? |
|