我目前正在使用静态html使用POST打开网页,我试图将其迁移到我的Android应用程序。
以下是正在使用的HTML代码
<body onload=\"document.forms['openCloud'].submit();\">
<form name=\"openOwnCloud\" action=\"%1/index.php\" method=\"post\" >
<div>
<input type=\"hidden\" name=\"user\" value=\"%2\" >
<input type=\"hidden\" name=\"password\" value=\"%3\" >
</div>
</form>
</body>
继续我迄今为止尝试过POST ,但我不知道如何以编程方式在该页面中解析表单名称:
String url = SOMESERVER + mPath;
String postData = "username="+USERNAME+"&password="+PASSWORD;
webView.postUrl(url, EncodingUtils.getBytes(postData, "BASE64"));
webView.loadData();
我可以得到一些帮助吗?