10

我想使用 webview 发出 http post 请求。

webView.setWebViewClient(new WebViewClient(){


            public void onPageStarted(WebView view, String url,
                Bitmap favicon) {
            super.onPageStarted(view, url, favicon);
            }

            public boolean shouldOverrideUrlLoading(WebView view,
                String url) {

            webView.postUrl(Base_Url, postData.getBytes());

            return true;
            }

        });

上面的代码片段加载网页。我想访问此请求的响应。

如何使用 webview 获取 http post 请求的响应?

提前致谢

4

2 回答 2

12

首先将http库的支持添加到你的gradle文件中:为了能够使用

useLibrary 'org.apache.http.legacy'

在此之后,您可以使用以下代码在您的 webview 中执行发布请求:

public void postUrl (String url, byte[] postData)
String postData = "submit=1&id=236";
webview.postUrl("http://www.belencruzz.com/exampleURL",EncodingUtils.getBytes(postData, "BASE64"));

http://belencruz.com/2012/12/do-post-request-on-a-webview-in-android/

于 2016-02-18T13:07:00.097 回答
7

WebView 不允许您访问 HTTP 响应的内容。

您必须为此使用HttpClient,然后通过使用函数loadDataWithBaseUrl并指定基本 url 将内容转发到视图,以便用户可以使用 webview 继续在网站中导航。

例子:

// Executing POST request
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
httppost.setEntity(postContent);
HttpResponse response = httpclient.execute(httppost);

// Get the response content
String line = "";
StringBuilder contentBuilder = new StringBuilder();
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
while ((line = rd.readLine()) != null) { 
    contentBuilder.append(line); 
}
String content = contentBuilder.toString();

// Do whatever you want with the content

// Show the web page
webView.loadDataWithBaseURL(url, content, "text/html", "UTF-8", null);
于 2012-11-19T11:09:20.407 回答