如何将JavaScript函数传递给Java方法以充当回调(Rhino)

前端之家收集整理的这篇文章主要介绍了如何将JavaScript函数传递给Java方法以充当回调(Rhino)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
基本上我试图将一个 javaScript函数传递给一个 Java方法,作为脚本的回调.

我可以这样做 – 但是我收到的对象是一个sun.org.mozilla.javascript.internal.InterpretedFunction,我没有看到一种方法调用它.

有任何想法吗?

这是我到目前为止

var someNumber = 0;

function start() {
   // log is just an log4j instance added to the Bindings
   log.info("started....");
   someNumber = 20;

    // Test is a unit test object with this method on it (taking Object as a param).
    test.callFromRhino(junk);
}

function junk() {
    log.info("called back " + someNumber);
}

解决方法

实现界面:
import javax.script.*;

public class CallBack {
  public void invoke(Runnable runnable) {
    runnable.run();
  }

  public static void main(String[] args) throws ScriptException {
    ScriptEngine js = new ScriptEngineManager().getEngineByExtension("js");
    js.getContext().setAttribute("callBack",new CallBack(),ScriptContext.ENGINE_SCOPE);
    js.eval("var impl = { run: function () { print('Hello,World!'); } };\n"
        + "var runnable = new java.lang.Runnable(impl);\n"
        + "callBack.invoke(runnable);\n");
  }
}
原文链接:https://www.f2er.com/js/151541.html

猜你在找的JavaScript相关文章