如何转换 java ScriptEngine 代码以使用 Rhino

发布于 2024-11-24 15:41:16 字数 605 浏览 2 评论 0原文

我将 javascript 表达式嵌入到我的 java 程序中,如下所示 将简单的表达式语言放入java

但我现在意识到我需要直接使用 Rhino 而不是 ScriptEngine,因为我需要保留 Java 1.5 兼容性,我想我可以按如下方式运行评估,

Context context = Context.enter();
try {
    Scriptable scope = context.initStandardObjects();
    String result = context.evaluateString(scope, expr, null, 0, null);
    return result
} finally {
    Context.exit();
}

的替代方法是什么

jsEngine.put(fieldname.getScriptVariable(), value);

但是将值映射到变量

I embed javascript expressions into my java prog as follows
Putting a simple expression language into java

But I now realise I need to use Rhino directly rather than ScriptEngine because I need to preserve Java 1.5 compatabiliy, I think I can run the evaluation as folllows

Context context = Context.enter();
try {
    Scriptable scope = context.initStandardObjects();
    String result = context.evaluateString(scope, expr, null, 0, null);
    return result
} finally {
    Context.exit();
}

but whats the alternative to

jsEngine.put(fieldname.getScriptVariable(), value);

to map values to variables

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

两相知 2024-12-01 15:41:16

我认为您需要执行以下操作:

Object wrappedObject = Context.javaToJS(yourObjectHere, scope);
ScriptableObject.putProperty(scope, "yourVariableNameHere", wrappedObject);

请参阅 公开 Java API Rhino例子。

I think what you need to do is the following:

Object wrappedObject = Context.javaToJS(yourObjectHere, scope);
ScriptableObject.putProperty(scope, "yourVariableNameHere", wrappedObject);

See the Expose Java APIs Rhino example.

黑寡妇 2024-12-01 15:41:16

如果您必须兼容 java 1.5,至少使用 Jakarta 项目中的 BSF 框架。它类似于java 1.6中引入的java脚本框架

If you have to be java 1.5 compatible at least use BSF framework from Jakarta project. It is similar to java scripting framework introduced in java 1.6

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