通过反射设置私有字段值

问题描述 投票:0回答:6

我有2个班级:

Father
Child

public class Father implements Serializable, JSONInterface {

    private String a_field;

    //setter and getter here

}

public class Child extends Father {
    //empty class
}

通过反射,我想在

a_field
类中设置
Child

Class<?> clazz = Class.forName("Child");
Object cc = clazz.newInstance();

Field f1 = cc.getClass().getField("a_field");
f1.set(cc, "reflecting on life");
String str1 = (String) f1.get(cc.getClass());
System.out.println("field: " + str1);

但我有一个例外:

线程“main”中的异常 java.lang.NoSuchFieldException:a_field

但是如果我尝试:

Child child = new Child();
child.setA_field("123");

它有效。

使用setter方法我有同样的问题:

method = cc.getClass().getMethod("setA_field");
method.invoke(cc, new Object[] { "aaaaaaaaaaaaaa" });
java reflection
6个回答
188
投票

要访问私有字段,您需要将

Field::setAccessible
设置为 true。你可以把这个领域从超级类中拉出来。此代码有效:

Class<?> clazz = Child.class;
Object cc = clazz.newInstance();

Field f1 = cc.getClass().getSuperclass().getDeclaredField("a_field");
f1.setAccessible(true);
f1.set(cc, "reflecting on life");
String str1 = (String) f1.get(cc);
System.out.println("field: " + str1);

143
投票

使用

FieldUtils
来自 Apache Commons Lang 3:

FieldUtils.writeField(childInstance, "a_field", "Hello", true);

即使字段是

private
true 也会强制其设置。


21
投票

Kotlin 版本

使用以下扩展函数获取私有变量

fun <T : Any> T.getPrivateProperty(variableName: String): Any? {
    return javaClass.getDeclaredField(variableName).let { field ->
        field.isAccessible = true
        return@let field.get(this)
    }
}

设置私有变量值获取变量

fun <T : Any> T.setAndReturnPrivateProperty(variableName: String, data: Any): Any? {
    return javaClass.getDeclaredField(variableName).let { field ->
        field.isAccessible = true
        field.set(this, data)
        return@let field.get(this)
    }
}

获取变量使用:

val bool = <your_class_object>.getPrivateProperty("your_variable") as String

设置和获取变量使用:

val bool = <your_class_object>.setAndReturnPrivateProperty("your_variable", true) as Boolean
val str = <your_class_object>.setAndReturnPrivateProperty("your_variable", "Hello") as String

Java版

public class RefUtil {

    public static Field setFieldValue(Object object, String fieldName, Object valueTobeSet) throws NoSuchFieldException, IllegalAccessException {
        Field field = getField(object.getClass(), fieldName);
        field.setAccessible(true);
        field.set(object, valueTobeSet);
        return field;
    }

    public static Object getPrivateFieldValue(Object object, String fieldName) throws NoSuchFieldException, IllegalAccessException {
        Field field = getField(object.getClass(), fieldName);
        field.setAccessible(true);
        return field.get(object);
    }

    private static Field getField(Class mClass, String fieldName) throws NoSuchFieldException {
        try {
            return mClass.getDeclaredField(fieldName);
        } catch (NoSuchFieldException e) {
            Class superClass = mClass.getSuperclass();
            if (superClass == null) {
                throw e;
            } else {
                return getField(superClass, fieldName);
            }
        }
    }
}

设置私有值用途

RefUtil.setFieldValue(<your_class_object>, "your_variableName", newValue);

获得私人价值使用

Object value = RefUtil.getPrivateFieldValue(<your_class_object>, "your_variableName");

7
投票

这个也可以访问私有字段,而无需执行任何操作

import org.apache.commons.lang3.reflect.FieldUtils;
Object value = FieldUtils.readField(entity, fieldName, true);

0
投票

只需使用

ReflectionTestUtils.setField(yourClass, "variable", value);

来自 org.springframework.test.util


-5
投票

根据

Class.getField
的 Javadoc(强调我的):

返回一个 Field 对象,该对象反映此 Class 对象所表示的类或接口的指定公共成员字段

该方法仅返回公共字段。由于

a_field
是私人的,因此不会被发现。

这是一个工作代码:

public class Main {

    public static void main(String[] args) throws Exception {
        Class<?> clazz = Class.forName("Child");
        Object cc = clazz.newInstance();

        Field f1 = cc.getClass().getField("a_field");
        f1.set(cc, "reflecting on life");
        String str1 = (String) f1.get(cc);
        System.out.println("field: " + str1);
    }

}

class Father implements Serializable {
    public String a_field;
}

class Child extends Father {
//empty class
}

请注意,我还将您的行

String str1 = (String) f1.get(cc.getClass());
更改为
String str1 = (String) f1.get(cc);
,因为您需要给出字段的对象,而不是类。


如果您想将字段保持私有,那么您需要检索 getter / setter 方法并调用它们。您给出的代码不起作用,因为要获取方法,您还需要指定它的参数,所以

cc.getClass().getMethod("setA_field");

一定是

cc.getClass().getMethod("setA_field", String.class);

这是一个工作代码:

public class Main {

    public static void main(String[] args) throws Exception {
        Class<?> clazz = Class.forName("Child");
        Object cc = clazz.newInstance();
        cc.getClass().getMethod("setA_field", String.class).invoke(cc, "aaaaaaaaaaaaaa");
        String str1 = (String) cc.getClass().getMethod("getA_field").invoke(cc);
        System.out.println("field: " + str1);
    }

}

class Father implements Serializable {

    private String a_field;

    public String getA_field() {
        return a_field;
    }

    public void setA_field(String a_field) {
        this.a_field = a_field;
    }

}

class Child extends Father {
    //empty class
}
© www.soinside.com 2019 - 2024. All rights reserved.