有什么方法可以调用私有方法吗?

时间:2009-05-19 00:01:11

标签: java reflection private

我有一个使用XML和反射的类将Object返回给另一个类。

通常这些对象是外部对象的子字段,但有时它是我想要动态生成的东西。我尝试过类似的东西,但无济于事。我相信这是因为Java不允许您访问private方法进行反思。

Element node = outerNode.item(0);
String methodName = node.getAttribute("method");
String objectName = node.getAttribute("object");

if ("SomeObject".equals(objectName))
    object = someObject;
else
    object = this;

method = object.getClass().getMethod(methodName, (Class[]) null);

如果提供的方法为private,则会失败并显示NoSuchMethodException。我可以通过制作方法public,或者让另一个类从中派生它来解决它。

长话短说,我只是想知道是否有办法通过反射访问private方法。

7 个答案:

答案 0 :(得分:264)

您可以使用反射调用私有方法。修改已发布代码的最后一位:

Method method = object.getClass().getDeclaredMethod(methodName);
method.setAccessible(true);
Object r = method.invoke(object);

有几点需要注意。首先,getDeclaredMethod只会找到在当前Class中声明的方法,而不是从超类型继承的方法。因此,如有必要,遍历具体的类层次结构。其次,SecurityManager可以阻止使用setAccessible方法。因此,它可能需要以PrivilegedAction运行(使用AccessControllerSubject)。

答案 1 :(得分:33)

使用getDeclaredMethod()获取私有Method对象,然后使用method.setAccessible()允许实际调用它。

答案 2 :(得分:23)

如果方法接受非原始数据类型,则可以使用以下方法来调用任何类的私有方法:

public static Object genericInvokeMethod(Object obj, String methodName,
            Object... params) {
        int paramCount = params.length;
        Method method;
        Object requiredObj = null;
        Class<?>[] classArray = new Class<?>[paramCount];
        for (int i = 0; i < paramCount; i++) {
            classArray[i] = params[i].getClass();
        }
        try {
            method = obj.getClass().getDeclaredMethod(methodName, classArray);
            method.setAccessible(true);
            requiredObj = method.invoke(obj, params);
        } catch (NoSuchMethodException e) {
            e.printStackTrace();
        } catch (IllegalArgumentException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        } catch (InvocationTargetException e) {
            e.printStackTrace();
        }

        return requiredObj;
    }

接受的参数是obj,methodName和参数。例如

public class Test {
private String concatString(String a, String b) {
    return (a+b);
}
}

方法concatString可以作为

调用
Test t = new Test();
    String str = (String) genericInvokeMethod(t, "concatString", "Hello", "Mr.x");

答案 3 :(得分:3)

让我通过反射提供执行受保护方法的完整代码。它支持任何类型的参数,包括泛型,autoboxed params和null值

@SuppressWarnings("unchecked")
public static <T> T executeSuperMethod(Object instance, String methodName, Object... params) throws Exception {
    return executeMethod(instance.getClass().getSuperclass(), instance, methodName, params);
}

public static <T> T executeMethod(Object instance, String methodName, Object... params) throws Exception {
    return executeMethod(instance.getClass(), instance, methodName, params);
}

@SuppressWarnings("unchecked")
public static <T> T executeMethod(Class clazz, Object instance, String methodName, Object... params) throws Exception {

    Method[] allMethods = clazz.getDeclaredMethods();

    if (allMethods != null && allMethods.length > 0) {

        Class[] paramClasses = Arrays.stream(params).map(p -> p != null ? p.getClass() : null).toArray(Class[]::new);

        for (Method method : allMethods) {
            String currentMethodName = method.getName();
            if (!currentMethodName.equals(methodName)) {
                continue;
            }
            Type[] pTypes = method.getParameterTypes();
            if (pTypes.length == paramClasses.length) {
                boolean goodMethod = true;
                int i = 0;
                for (Type pType : pTypes) {
                    if (!ClassUtils.isAssignable(paramClasses[i++], (Class<?>) pType)) {
                        goodMethod = false;
                        break;
                    }
                }
                if (goodMethod) {
                    method.setAccessible(true);
                    return (T) method.invoke(instance, params);
                }
            }
        }

        throw new MethodNotFoundException("There are no methods found with name " + methodName + " and params " +
            Arrays.toString(paramClasses));
    }

    throw new MethodNotFoundException("There are no methods found with name " + methodName);
}

方法使用apache ClassUtils检查自动装箱参数的兼容性

答案 4 :(得分:2)

你可以使用Spring的ReflectionTestUtils(org.springframework.test.util.ReflectionTestUtils

来做到这一点
ReflectionTestUtils.invokeMethod(instantiatedObject,"methodName",argument);

示例:如果您的类具有私有方法square(int x)

Calculator calculator = new Calculator();
ReflectionTestUtils.invokeMethod(calculator,"square",10);

答案 5 :(得分:0)

另一个变体是使用非常强大的JOOR库https://github.com/jOOQ/jOOR

MyObject myObject = new MyObject()
on(myObject).get("privateField");  

它允许修改任何字段,如final static constants和调用yne protected方法,而不在继承hierarhy中指定具体类

<!-- https://mvnrepository.com/artifact/org.jooq/joor-java-8 -->
<dependency>
     <groupId>org.jooq</groupId>
     <artifactId>joor-java-8</artifactId>
     <version>0.9.7</version>
</dependency>

答案 6 :(得分:-1)

您可以使用Manifold's @Jailbreak 进行直接的类型安全的Java反射:

@Jailbreak Foo foo = new Foo();
foo.callMe();

public class Foo {
    private void callMe();
}

@Jailbreak在编译器中解锁foo局部变量,以直接访问Foo层次结构中的所有成员。

类似地,您可以将 jailbreak()扩展方法用于一次性使用:

foo.jailbreak().callMe();

通过jailbreak()方法,您可以访问Foo层次结构中的任何成员。

在这两种情况下,编译器都会像公共方法一样安全地为您解决方法调用,而Manifold会在后台为您生成有效的反射代码。

或者,如果类型不是静态已知的,则可以使用Structural Typing定义类型可以满足的接口,而不必声明其实现。这种策略可保持类型安全,并避免与反射和代理代码相关的性能和标识问题。

了解有关Manifold的更多信息。