昨天搞清楚如何配置我的Eclipse项目以便能够运行JS代码(如果你感兴趣:Build a JS server inside of Java for Google AppEngine),我有下一个与此主题相关的问题:我有一个JS文件和一个函数在其中。我需要在我的Java代码中运行该函数并在其中传递(Java字符串)变量。我的文件非常基本,目前看起来像这样:
public class Com_feedic_readabilityServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("text/html");
Context cx = ContextFactory.getGlobal().enterContext();
cx.setOptimizationLevel(-1);
cx.setLanguageVersion(Context.VERSION_1_5);
Global global = Main.getGlobal();
global.init(cx);
Main.processSource(cx, "server_js/js_init.js");
}
}
我现在需要做的是调用run()
文件中的函数js_init.js
。我该如何管理?
答案 0 :(得分:7)
您需要通过Binding对象传递参数的值,如下所示:
package rhinodemo;
import java.util.Date;
import javax.script.*;
public class RhinoDemo {
public static void main(String[] args) throws Exception {
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine engine = mgr.getEngineByName("JavaScript");
Bindings bindings = engine.createBindings();
bindings.put("currentTime", new Date());
engine.eval(
"function run(x) { println('x=' + x); }" +
"run(currentTime);", bindings);
}
}
如果您希望Java代码调用名为run()
的Javascript函数,则创建一个脚本(a)定义run()
函数,(b)调用此函数,并将参数传递给它。然后,在Java端,您需要创建一个Bindings对象并设置此参数bindings.put(currentTime, new Date())
的值。
答案 1 :(得分:2)
试试这个:
Object jsOut = Context.javaToJS(System.out, scope);
ScriptableObject.putProperty(scope, "out", jsOut);
和js文件out.println(<text>);