如何在 WebView 中加载 Javascript
How to load a Javascript in WebView
我已经使用 webview.loadUrl()
在 Android WebView 中加载了我的网页,我正在尝试使用 webview.evaluateJavascript()
.
将 Javascript 注入 WebView
但这里的问题是,Javascript 在远程 location/url 中可用。我想从远程位置获取 javascript 并将其注入 WebView。
我搜索了与此问题相关的内容,但我发现的都是从字符串加载。
要启用 javascript 试试这个。
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView .loadUrl("url");
要从远程位置获取 javascript,请参阅 This solution
你可以这样做:
private static class WC extends WebViewClient {
Handler handler1 = null;
WebView webView = null;
byte[] b = null;
public WC(Handler handler, WebView webView) {
this.handler1 = handler;
this.webView = webView;
}
@Override
public void onPageFinished(final WebView view, String url) {
super.onPageFinished(view, url);
new Thread(new Runnable() {
@Override
public void run() {
try {
injectScriptFromNetWork("http://192.168.216.254:4000/test.js");
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
private void injectScriptFromNetWork(String urlStr) throws IOException {
URL url = new URL(urlStr);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
int code = urlConnection.getResponseCode();
if (code == 200) {
InputStream inputStream = urlConnection.getInputStream();
b = new byte[inputStream.available()];
inputStream.read(b);
}
handler1.post(new Runnable() {
@Override
public void run() {
String jsSource = Base64.encodeToString(b, Base64.NO_WRAP);
webView.loadUrl("javascript:(function() {" +
"var parent = document.getElementsByTagName('head').item(0);" +
"var script = document.createElement('script');" +
"script.type = 'text/javascript';" +
"script.innerHTML = window.atob('" + jsSource + "');" +
"parent.appendChild(script)" +
"})()");
}
});
}
}
MainActivity.java 代码如下:
handler = new Handler(getMainLooper());
webView.setWebViewClient(new WC(handler, webView));
webView.loadUrl("file:///android_asset/index.html");
见谅,第一次在Whosebug上回答问题
我已经使用 webview.loadUrl()
在 Android WebView 中加载了我的网页,我正在尝试使用 webview.evaluateJavascript()
.
但这里的问题是,Javascript 在远程 location/url 中可用。我想从远程位置获取 javascript 并将其注入 WebView。
我搜索了与此问题相关的内容,但我发现的都是从字符串加载。
要启用 javascript 试试这个。
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView .loadUrl("url");
要从远程位置获取 javascript,请参阅 This solution
你可以这样做:
private static class WC extends WebViewClient {
Handler handler1 = null;
WebView webView = null;
byte[] b = null;
public WC(Handler handler, WebView webView) {
this.handler1 = handler;
this.webView = webView;
}
@Override
public void onPageFinished(final WebView view, String url) {
super.onPageFinished(view, url);
new Thread(new Runnable() {
@Override
public void run() {
try {
injectScriptFromNetWork("http://192.168.216.254:4000/test.js");
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
private void injectScriptFromNetWork(String urlStr) throws IOException {
URL url = new URL(urlStr);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
int code = urlConnection.getResponseCode();
if (code == 200) {
InputStream inputStream = urlConnection.getInputStream();
b = new byte[inputStream.available()];
inputStream.read(b);
}
handler1.post(new Runnable() {
@Override
public void run() {
String jsSource = Base64.encodeToString(b, Base64.NO_WRAP);
webView.loadUrl("javascript:(function() {" +
"var parent = document.getElementsByTagName('head').item(0);" +
"var script = document.createElement('script');" +
"script.type = 'text/javascript';" +
"script.innerHTML = window.atob('" + jsSource + "');" +
"parent.appendChild(script)" +
"})()");
}
});
}
}
MainActivity.java 代码如下:
handler = new Handler(getMainLooper());
webView.setWebViewClient(new WC(handler, webView));
webView.loadUrl("file:///android_asset/index.html");
见谅,第一次在Whosebug上回答问题