我想使用 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 请求的响应?
提前致谢