是否可以使用Android WebView Api进行http发布

时间:2012-07-12 13:42:58

标签: android android-webview

  

可能重复:
  HTTP POST response into WebView in android

在我的Android应用程序中,我想使用Web View中的查看部分HTML,CSS。可以在此webview API中使用jquery ajax进行http post。

1 个答案:

答案 0 :(得分:1)

你可以用

完成
WebView webview = findviewbyid(R.id.webview);
byte[] post = EncodingUtils.getBytes("postvar=value", "BASE64");
webview.postUrl("http://www.mysite.com/post", post);