我正在尝试使用 java 登录到报告系统。到目前为止,我已经尝试了许多使用 HttpURLConnection 的不同实现。我试图发布的 HTML 归结为:
<form name="logonForm" method="POST" action="http://remoteserver/logon.object">
<input type="hidden" name="qryStr" value="">
<input type="hidden" name="cmsVisible" value="true">
<input type="hidden" name="authenticationVisible" value="true">
<input type="hidden" name="referer" value="">
<input type="hidden" name="refererFormData" value="">
<input type="hidden" name="isFromLogonPage" value="true">
<input type="text" name="cms" value="xxxxx" class="textfield" id="apsTextEdit">
<input type="text" name="username" value="xxxxx"class="textfield" id="usernameTextEdit">
<input type="text" name="password" value="xxxxx"class="textfield" id="passwordTextEdit">
<select name="authType"id="authenticationSelectBox">
<option selected value='xxxxx'>xxxxx</select>
<input type="submit" name="SUBMIT">
</form>
我知道这个表单提供了有效的输入,因为当我在浏览器中单击提交时,它会将我登录到我的报告系统中。但是,当我发送编程请求时,我总是将上述 html 作为响应返回。注意我已经尝试了大约一百万个使用 HttpURLRequest 的实现。一个例子:
OutputStreamWriter wr = new OutputStreamWriter(connection.getOutputStream());
wr.write(parameters);
wr.flush();
// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
String allLines = "";
while ((line = rd.readLine()) != null) {
allLines += "\n" + line; // Process line...
}
wr.close();
rd.close();
return allLines;
其中“参数”的范围从零到我发布的 HTML 中的每个 URL 编码参数,并且连接(当前,如我尝试过的其他配置)设置如下:
connection = (HttpURLConnection) url.openConnection();
HttpURLConnection.setFollowRedirects(true);
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestMethod("POST");
connection.setAllowUserInteraction(false);
connection.setRequestProperty("Content-type", "application/x-www-form-urlencoded; charset=" + "UTF-8");
connection.setUseCaches(false);
connection.connect();
我知道细节有点稀疏,所以如果您需要更多信息,请告诉我,非常感谢您的任何意见!