如何从 WebView 检索 HTML 内容(作为字符串)

发布于 2024-10-21 21:25:40 字数 210 浏览 1 评论 0原文

如何检索当前显示在 WebView 中的所有 HTML 内容?

我找到了 WebView.loadData() 但我找不到相反的等效项(例如 WebView.getData())

请注意,我有兴趣检索我无法控制的网页的数据(即我无法将 Javascript 函数注入到这些页面中,以便它可以调用 WebView 中的 Javascript 接口)。

How do I retrieve all HTML content currently displayed in a WebView?

I found WebView.loadData() but I couldn't find the opposite equivalent (e.g. WebView.getData())

Please note that I am interested in retrieving that data for web pages that I have no control over (i.e. I cannot inject a Javascript function into those pages, so that that it would call a Javascript interface in WebView).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

人间不值得 2024-10-28 21:25:40
webView.evaluateJavascript("(function(){return window.document.body.outerHTML})();", 
      new ValueCallback<String>() {
          @Override
          public void onReceiveValue(String html) {

          }
      });
webView.evaluateJavascript("(function(){return window.document.body.outerHTML})();", 
      new ValueCallback<String>() {
          @Override
          public void onReceiveValue(String html) {

          }
      });
顾忌 2024-10-28 21:25:40

将其添加到您的代码中:

private String getUrlSource(String site) throws IOException {
    //GNU Public, from ZunoZap Web Browser
    URL url = new URL(site);
    URLConnection urlc = url.openConnection();
    BufferedReader in = new BufferedReader(new InputStreamReader(
    urlc.getInputStream(), "UTF-8"));
    String inputLine;
    StringBuilder a = new StringBuilder();
    while ((inputLine = in.readLine()) != null)
    a.append(inputLine);
    in.close();

    return a.toString();
}

然后让我们告诉您如何获取 Google 的源代码:

getURLSource("http://google.com");

Add this to your code:

private String getUrlSource(String site) throws IOException {
    //GNU Public, from ZunoZap Web Browser
    URL url = new URL(site);
    URLConnection urlc = url.openConnection();
    BufferedReader in = new BufferedReader(new InputStreamReader(
    urlc.getInputStream(), "UTF-8"));
    String inputLine;
    StringBuilder a = new StringBuilder();
    while ((inputLine = in.readLine()) != null)
    a.append(inputLine);
    in.close();

    return a.toString();
}

then lets say you what to get Google's source you would do:

getURLSource("http://google.com");
黑色毁心梦 2024-10-28 21:25:40

您可以拦截 WebView 发出的 HTTP 请求,然后修改 HTML 以包含与 HTML 页面通信所需的任何 JavaScript 函数。您可以通过 WebViewClient shouldInterceptRequest() 方法拦截 HTTP 请求。

使用这种机制,您可以通过自己加载来访问已加载的页面,在将其传递到 WebView 之前对其进行修改,如果需要,甚至可以在本地缓存它。

You can intercept the HTTP requests made by the WebView, and then modify the HTML to include whatever JavaScript functions you need to communicate with the HTML page. You intercept HTTP requests via the WebViewClient shouldInterceptRequest() method.

Using this mechanism you can get access to the loaded page by loading it yourself, modify it before passing it on to the WebView, and even cache it locally if you want.

情话难免假 2024-10-28 21:25:40

你可以通过 JavaScriptInterface 从 webview 传递数据..我已经这样做了。
将数据保存到静态变量,然后在android应用程序下处理

you can pass data via JavaScriptInterface from webview.. i've done this.
save the data to an static variable then process under android applcation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文