InvocationTargetException,如何从此异常中提取导致异常的消息



当从其他 Java 程序运行此语句时。

mainMethod.invoke(null,(Object) args);

我得到了这个例外

I'm dying!
I'm not dead yet!
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.fourgid.ot.action.RunThread.run(RunThread.java:59)
***Caused by: java.lang.SecurityException
at Main$1.checkExit(Main.java:21)
at java.lang.Runtime.exit(Runtime.java:88)
at java.lang.System.exit(System.java:904)
at Main.main(Main.java:30)***
... 5 more

我只是为了仅显示JVM给出的消息和行号(上方突出显示的文本)SecurityException引起的异常。

我正在开发一个用于在网络上编译和执行程序的应用程序。

谢谢!!

我的建议:抓住InvocationTargetException,然后尝试exception.getCause()。然后,您可能能够从基础SecurityException获取更多详细信息。

相关内容

  • 没有找到相关文章

最新更新