如何转换 java ScriptEngine 代码以使用 Rhino
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您需要执行以下操作:
请参阅 公开 Java API Rhino例子。
I think what you need to do is the following:
See the Expose Java APIs Rhino example.
如果您必须兼容 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