首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

反照机访问属性值的代码

2012-09-08 
反射机访问属性值的代码我们完全可以通过反射机制来修改一个对象的私有变量的值,由于该文章并不是讨论反射

反射机访问属性值的代码

我们完全可以通过反射机制来修改一个对象的私有变量的值,由于该文章并不是讨论反射的的文章,所以这里只给出通过反射来修改私有变量值的代码,但并不作详细的说明:

我们创建一个新的类,叫BeanUtils.java

类得内容看其来如下:


public class BeanUtils {

?

?

?? ?private BeanUtils() {

?? ?}

?

?

?? ?/**

?? ? * 直接设置对象属性值,无视private/protected修饰符,不经过setter函数.

?? ? */

?? ?public static void setFieldValue(final Object object, final String fieldName, final Object value) {

?? ? ? ?Field field = getDeclaredField(object, fieldName);

?

?? ? ? ?if (field == null)

?? ? ? ? ? ?throw new IllegalArgumentException("Could not find field [" + fieldName + "] on target [" + object + "]");

?

?? ? ? ?makeAccessible(field);

?

?? ? ? ?try {

?? ? ? ? ? ?field.set(object, value);

?? ? ? ?} catch (IllegalAccessException e) {

?? ? ? ?Log.e("zbkc", "", e);

?? ? ? ?}

?? ?}

?

?? ?/**

?? ? * 循环向上转型,获取对象的DeclaredField.

?? ? */

?? ?protected static Field getDeclaredField(final Object object, final String fieldName) {

?? ? ? ?return getDeclaredField(object.getClass(), fieldName);

?? ?}

?

?? ?/**

?? ? * 循环向上转型,获取类的DeclaredField.

?? ? */

?? ?@SuppressWarnings("unchecked")

?? ?protected static Field getDeclaredField(final Class clazz, final String fieldName) {

?? ? ? ?for (Class superClass = clazz; superClass != Object.class; superClass = superClass.getSuperclass()) {

?? ? ? ? ? ?try {

?? ? ? ? ? ? ? ?return superClass.getDeclaredField(fieldName);

?? ? ? ? ? ?} catch (NoSuchFieldException e) {

?? ? ? ? ? ? ? ?// Field不在当前类定义,继续向上转型

?? ? ? ? ? ?}

?? ? ? ?}

?? ? ? ?return null;

?? ?}

?

?? ?/**

?? ? * 强制转换fileld可访问.

?? ? */

?? ?protected static void makeAccessible(Field field) {

?? ? ? ?if (!Modifier.isPublic(field.getModifiers()) || !Modifier.isPublic(field.getDeclaringClass().getModifiers())) {

?? ? ? ? ? ?field.setAccessible(true);

?? ? ? ?}

?? ?}

}


该工具提供一个共有的方法:public static void setFieldValue(final Object object, final String fieldName, final Object value)来修改一个对象的私有变量的值。

热点排行