如何使用 JSR-223 访问导致 ScriptException 的 Java 异常

发布于 2024-12-11 23:16:11 字数 508 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对风讲故事 2024-12-18 23:16:11

您尝试过e.getCause()吗?

have you tried e.getCause()?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文