InvocationTargetException

InvocationTargetException

我正在使用Method.invoke()调用第三方jar中的函数。有时我抛出了java.lang.reflect.InvocationTargetException。您如何才能找出真正的例外呢?

最佳答案

InvocationTargetException.getCause()使用1.4中引入的常规异常链接内容

09-27 08:11