Android使用Rhino让java执行javascript的方法实例

在Android中需要调用js函数,以前我们需要加载webview然后来进行js交互,今天教大家一个方法,不需要webview也能做到,那就是Rhino。

官网下载地址:

https://developer.mozilla.org/en-US/docs/Mozilla/Projects/Rhino/Download_Rhino

此教程使用的是最新版的Rhino 1.7.7.1编译

下面是我写的一个简单的测试代码:

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        TextView text1 = (TextView) findViewById(android.R.id.text1);
        TextView text2 = (TextView) findViewById(android.R.id.text2);
        text1.setText(runScript(JAVA_CALL_JS_FUNCTION, "hello", new String[] {}));
        text2.setText(runScript(JS_CALL_JAVA_FUNCTION, "hello", new String[] {}));
    }
    /** Java执行js的方法 */
    private static final String JAVA_CALL_JS_FUNCTION = "function hello(){ return 'lovecode.cn java call js Rhino'; }";
    /** js调用Java中的方法 */
    private static final String JS_CALL_JAVA_FUNCTION = //
    "var ScriptAPI = java.lang.Class.forName(\"" + MainActivity.class.getName() + "\", true, javaLoader);" + //
        "var methodRead = ScriptAPI.getMethod(\"jsCallJava\", [java.lang.String]);" + //
        "function jsCallJava(url) {return methodRead.invoke(null, url);}" + //
        "function hello(){ return jsCallJava(); }";
    /**
     * 执行JS
     *
     * @param js js代码
     * @param functionName js方法名称
     * @param functionParams js方法参数
     * @return
     */
    public String runScript(String js, String functionName, Object[] functionParams) {
        Context rhino = Context.enter();
        rhino.setOptimizationLevel(-1);
        try {
            Scriptable scope = rhino.initStandardObjects();
            ScriptableObject.putProperty(scope, "javaContext", Context.javaToJS(MainActivity.this, scope));
            ScriptableObject.putProperty(scope, "javaLoader", Context.javaToJS(MainActivity.class.getClassLoader(), scope));
            rhino.evaluateString(scope, js, "MainActivity", 1, null);
            Function function = (Function) scope.get(functionName, scope);
            Object result = function.call(rhino, scope, scope, functionParams);
            if (result instanceof String) {
                return (String) result;
            } else if (result instanceof NativeJavaObject) {
                return (String) ((NativeJavaObject) result).getDefaultValue(String.class);
            } else if (result instanceof NativeObject) {
                return (String) ((NativeObject) result).getDefaultValue(String.class);
            }
            return result.toString();//(String) function.call(rhino, scope, scope, functionParams);
        } finally {
            Context.exit();
        }
    }
    public static String jsCallJava(String url) {
        return "lovecode.cn js call Java Rhino";
    }
}

我已测试通过,大家拿去就可以使用了。

欢迎转载,请说明出处。

猜你喜欢

转载自blog.csdn.net/bobxie520/article/details/115409373
今日推荐