如下代码如果类中的方法声明是私有的 就不能解决了,请教大家怎么解决啊?
private static void setProperties(Object rpt,
String propertyName, Object value) throws IntrospectionException,
IllegalAccessException, InvocationTargetException {
PropertyDescriptor pd2=new PropertyDescriptor(propertyName,rpt.getClass());
Method methodSetY=pd2.getWriteMethod();
methodSetY.invoke(rpt, value);
}
|