码迷,mamicode.com
首页 > 编程语言 > 详细

java简单反射调用get,set方法

时间:2015-04-01 12:58:55      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

public Object setDate(ResultSet rs,Object o) throws ClassNotFoundException, InstantiationException, IllegalAccessException, IntrospectionException, IllegalArgumentException, InvocationTargetException, SQLException{
Class cs = Class.forName(o.getClass().getName());
Field [] fileds = cs.getDeclaredFields();
for (Field field : fileds) {


PropertyDescriptor pd = new PropertyDescriptor(field.getName(),cs);

//获取所有set方法
Method method = pd.getWriteMethod();
//利用set方法赋值
method.invoke(o,rs.getString(field.getName()));
}
return o;
}

java简单反射调用get,set方法

标签:

原文地址:http://www.cnblogs.com/skeek/p/4383466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!