当前位置: 代码迷 >> 综合 >> Android WebView 通过post形式访问(postUrl)
  详细解决方案

Android WebView 通过post形式访问(postUrl)

热度:7   发布时间:2023-12-17 21:43:03.0

Java代码  
  1. //需要访问的网址  
  2. String url = "http://www.cqjg.gov.cn/netcar/FindThree.aspx";  
  3. //post访问需要提交的参数  
  4. String postDate = "txtName=zzz&QueryTypeLst=1&CertificateTxt=dsds";  
  5. //由于webView.postUrl(url, postData)中 postData类型为byte[] ,  
  6. //通过EncodingUtils.getBytes(data, charset)方法进行转换  
  7. webView.postUrl(url, EncodingUtils.getBytes(postDate, "BASE64")); 
  相关解决方案