10

我有用 JavaScript 编写的业务逻辑,此代码与其他非 Android 应用程序共享。

在 Android 的服务中使用这段 JavaScript 中的函数的最佳方法是什么。

AFAIK,有两种选择?

  • V8 内置在标准 WebView 中,速度超快,没有额外的 apk 膨胀。
  • Rhino,在 Android 上很难上手?

专注于 V8/Webview,当我尝试使用任何功能访问 WebView 时,我得到了;

All WebView methods must be called on the UI thread. Future versions of WebView may not support use on other threads.

注意到警告,它现在甚至不起作用。当我设置 webviewclient 时,加载 URL 后我什么也得不到。

我的问题分为三个部分;

1) 有没有人在没有 UI 线程的情况下在 web 视图中运行 javascript 取得任何成功?

2) 如何从 javascript 中的函数获取结果,webview 界面“addJavascriptInterface”是否支持加载参数并将其发送回 java?

3)如果以上任何一个都不可能..我想我会去买犀牛,任何提示都会很感激,我只看到一些博客抱怨关于让它在 Android 上运行的问题,并想知道是否有在某处维护的 android 的“转到”版本。

4

1 回答 1

8

在服务的深处找不到任何关于 V8 的信息。

最终使用了 Rhino,但是对任何追随我的人的警告,它非常慢。

只需从 https://developer.mozilla.org/en-US/docs/Rhino/Download_Rhino?redirectlocale=en-US&redirectslug=RhinoDownload的 Rhino 官方最新发行版中获取 jar

js.jar 是您在 zip 中需要的。js-14 是您不需要的更大的 java 1.4 兼容版本。

集成很简单,只需将 jar 放入您的 libs 文件夹即可。

下面是我使用 javascript 抓取网页(将数据转换为格式更好的 json)。使用我从 assets 文件夹中制作的 parse.js 脚本。

Rhino 不附带 DOM,并且 env.js 因 stackoverflow 错误而崩溃。总的来说,我会说这个解决方案很慢并且没有得到很好的支持......

public static void sync(Context context, ){
    String url = BASE_URL;

    String html = Utils.inputStreamToString(Utils.getHTTPStream(url));

    timeList.add(System.currentTimeMillis());

    if(html == null){
        Utils.logw("Could not get board list.");
        return;
    }

    String parsingCode = null;
    try {
        parsingCode = Utils.inputStreamToString(context.getAssets().open("parse.js"));
    } catch (IOException e) {
        Utils.logw("Could not get board parser js");
        return;
    }

    // Create an execution environment.
    org.mozilla.javascript.Context cx = org.mozilla.javascript.Context.enter();

    // Turn compilation off.
    cx.setOptimizationLevel(-1);

    try {
        // Initialize a variable scope with bindnings for
        // standard objects (Object, Function, etc.)
        Scriptable scope = cx.initStandardObjects();

        ScriptableObject.putProperty(
                scope, "html", org.mozilla.javascript.Context.javaToJS(html, scope));

        //load up the function
        cx.evaluateString(scope, parsingCode,"parseFunction", 1 , null);

        // Evaluate the script.
        Object result = cx.evaluateString(scope, "myFunction()", "doit:", 1, null);

        JSONArray jsonArray = new JSONArray(result.toString());
于 2013-05-10T19:46:41.840 回答