Java InvocationTargetException在调用私有方法时



我有一个这样签名的私有方法:

private void compressFilesForSend(List<File> files, File archiveFile)

,我想通过反射

在测试中调用它
Class[] parameterTypes = new Class[2];
        parameterTypes[0] = java.util.List.class;
        parameterTypes[1] = java.io.File.class;
        Method method = SendDB.class.getDeclaredMethod("compressFilesForSend",parameterTypes);
        method.setAccessible(true);
        method.invoke(files, archiveFile);
异常堆栈

:

java.lang.NoSuchMethodException: com.m1_mm.tools.SendDB.compressFilesForSend(java.util.ArrayList, java.io.File)
    at java.lang.Class.getDeclaredMethod(Class.java:2130)
    at com.m1_mm.tools.SendDBTest.compressFilesForSendTest1(SendDBTest.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)

如何调用这个方法?

你把Method.invoke的签名写错了。您需要传递要在其上调用方法的实例,然后是参数。

你所做的是告诉它调用files的方法,传递archiveFile作为参数;换句话说,你在做

files.compressFilesForSend(archiveFile);

但将files视为SendDB的实例。

您需要找出您想要调用该方法的SendDB实例,并将其作为第一个参数传递:

method.invoke(mySendDbInstance, files, archiveFile);

问题是您传递的files参数是ArrayList,但方法签名说您期望的是List参数。

List<File> files = new ArrayList<File>;    //it's ok
ArrayList<File> files = new ArrayList<File>;    //it's not ok

相关内容

  • 没有找到相关文章

最新更新