如何使用 JSR-223 访问导致 ScriptException 的 Java 异常
我使用 JRE6 中内置的 JSR-223 脚本引擎执行 Javascript。 Javascript 能够访问 Java 代码和对象。当从 JavaScript 执行的 Java 代码抛出异常时,ScriptEngine 将抛出 ScriptException。
我希望能够访问导致 Javascript 抛出异常的 Java 异常。
从 Javascript 中,我可以捕获异常并查看异常的 javaException 字段:
try
{
.
}
catch (e)
{
e.javaException.printStackTrace();
}
但是,我无法控制 Javascript,只能控制 ScriptEngine 中的执行。有没有办法从 ScriptException 中获取“内部”Java 异常?
我相信如果我使用 Rhino,RhinoException 将有一个可用的 Java 异常。 RhinoException 无法从 JSR-223 API 中获得。
I'm executing Javascripts using the JSR-223 script engine built into JRE6. The Javascripts are able to access Java code and objects. When an exception is thrown from the Java code that is executed from a JavaScript, the ScriptEngine will throw a ScriptException.
I want to be able to access the Java exception that caused the Javascript to throw an exception.
From the Javascript, I can catch the exception and look at the javaException field of the exception:
try
{
.
}
catch (e)
{
e.javaException.printStackTrace();
}
However, I don't have control of the Javascript, only the execution of them from the ScriptEngine. Is there a way to grab the "inner" Java exception from the ScriptException?
I believe if I was using Rhino, the RhinoException would have a Java exception available. The RhinoException is not available from the JSR-223 API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过
e.getCause()
吗?have you tried
e.getCause()
?