0

我是 Java 中 ClassLoader 问题的新手。那么我怎么能调用像这样的方法

getDefault().GetImage();

这是我当前的代码:

ClassLoader tCLSLoader = new URLClassLoader(tListURL);
Class<?> tCLS = tCLSLoader.loadClass("com.github.sarxos.webcam.Webcam");

// MY FAILED TEST
Method tMethod = tCLS.getDeclaredMethod("getDefault().GetImage"); 
tMethod.invoke(tCLS,  (Object[]) null);

编辑:

我试过这个:

Method tMethod1 = tCLS.getDeclaredMethod("getDefault");
Object tWebCam = tMethod1.invoke(tCLS,  (Object[]) null);

// WebCam - Class
Class<?> tWCClass = tWebCam.getClass();


Method tMethod2 = tWCClass.getDeclaredMethod("getImage");
tMethod2.invoke(tWCClass, (Object[]) null);

但我得到:

java.lang.IllegalArgumentException: object is not an instance of declaring class

我需要得到这个结果:

BufferedImage tBuffImage = Webcam.getDefault().getImage();
4

1 回答 1

1

你不能这样做,这不是反射的工作方式。

您需要拆分您String.方法,然后依次循环和调用方法。

这应该有效

private static Object invokeMethods(final String methodString, final Object root) throws Exception {
    final String[] methods = methodString.split("\\.");
    Object result = root;
    for (final String method : methods) {
        result = result.getClass().getMethod(method).invoke(result);
    }
    return result;
}

快速测试:

public static void main(String[] args) throws Exception {
    final Calendar cal = Calendar.getInstance();
    System.out.println(cal.getTimeZone().getDisplayName());
    System.out.println(invokeMethods("getTimeZone.getDisplayName", cal));
}

输出:

Greenwich Mean Time
Greenwich Mean Time
于 2013-07-27T22:42:16.947 回答