我正在使用webview并打开网址并通过post方法接受登录凭据。我使用代码完成了这项工作,因此用户在首次登录后无需输入。
但是我无法这样做,我使用POST方法发送数据,但它无法打开主页以及如何检查它是UTF-8还是别的......
String data = "loginemailaddress=" + "username" + "&loginpassword=" + "password";
if(data != null) {
myWebView.postUrl("https://www.pmtestonline.com/study.jsp", EncodingUtils.getBytes(data,"UTF-8"));
}