android WebView js加载本地文件的跨域问题

2018-09-30  本文已影响0人  小浩_w

webview 添加

        try {
            Class<?> clazz = mWebView.getSettings().getClass();
            Method method = clazz.getMethod(
                    "setAllowUniversalAccessFromFileURLs", boolean.class);
            if (method != null) {
                method.invoke(mWebView.getSettings(), true);
            }
        } catch (IllegalArgumentException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
            e.printStackTrace();
        }

上一篇 下一篇

猜你喜欢

热点阅读