在android中打开一个带有POST数据的网页

时间:2014-01-15 01:37:33

标签: android post android-intent web

我想从我的应用中打开一个网页。

我有这段代码

String url = "http://www.mypage.com";
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);

但“http://www.mypage.com”需要一个POST变量

如何添加一个POST参数?

非常感谢!

1 个答案:

答案 0 :(得分:0)

你不能使用网页浏览?

WebView webview = new WebView(this);
setContentView(webview);
byte[] post = EncodingUtils.getBytes("var1=1&nextvar2=2", "BASE64");
webview.postUrl(YOUR_URL, post);