如何使用HttpURLConnection将此HTTP / 1.1 POST用于Java?

时间:2016-03-11 04:25:52

标签: java http-post httpurlconnection

我正在尝试使用HttpURLConnectionhttp://uploaded.net/io/login发送HTTP / 1.1 POST,以便使用我的用户名和密码登录该网站。

出于某种原因,似乎byte[] postData没有被发送到服务器。

我收到了响应代码和消息 200 OK ,但是服务器回复了JSON格式的错误消息 {“err”:“请输入ID和密码”} 好像我从未真正发送数据。

我尝试了不同的方法(发送Stringbyte[]等,使用不同的输出编写器)发送数据但是到目前为止它们都没有工作,我无法弄清楚究竟哪里失败了。

以下是我正在使用的代码段:

package post;

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.nio.charset.Charset;

public class PostTest {

    public static void login() throws MalformedURLException, IOException {
        String urlParameters = String.format("id=%s&password=%s", 
                URLEncoder.encode(Config.getProperty("account.1.username"), "UTF-8"), 
                URLEncoder.encode(Config.getProperty("account.1.password"), "UTF-8")
        );

        byte[] postData = urlParameters.getBytes(Charset.forName("UTF-8"));

        URL url = new URL(Config.getProperty("login.url"));
        HttpURLConnection httpConn = (HttpURLConnection)url.openConnection();
        httpConn.setDoInput(true);
        httpConn.setDoOutput(true);
        httpConn.setUseCaches(false);
        httpConn.setRequestMethod("POST");
        httpConn.setRequestProperty("Content-Length", 
                    Integer.toString(postData.length));

        //prints: 26
        System.out.println(postData.length);
        //prints: id=test&password=123456789
        System.out.println(urlParameters);

        httpConn.getOutputStream().write(postData);
        httpConn.getOutputStream().flush();

        try (BufferedReader reader = new BufferedReader(
                new InputStreamReader(httpConn.getInputStream()))) {
            for (String line; (line = reader.readLine()) != null;)
                System.out.println(line);
        }
    }
}

实时HTTP标头(Firefox插件)输出:

POST /io/login HTTP/1.1
Host: uploaded.net
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0
Accept: text/javascript, text/html, application/xml, text/xml, */*
Accept-Language: de,en-US;q=0.7,en;q=0.3
Accept-Encoding: gzip, deflate
X-Requested-With: XMLHttpRequest
X-Prototype-Version: 1.6.1
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: http://uploaded.net/
Content-Length: 20
Cookie: __utma=9[censored...]
Connection: keep-alive
  id=test&pw=123456789

HTTP/1.1 200 OK
[...]

修改:添加了Firefox'实时HTTP标头输出,我用它来查看通过POST发送的数据。

我的假设byte[] postData未正确发送,如果有的话,是否正确?

我需要做些哪些更改才能使登录正常工作?

1 个答案:

答案 0 :(得分:0)

呃,我终于发现了我的错误。因此,我尝试使用我的 localhost / test.php 进行首次登录,其中参数为password=<pw>我完全忽略了我发送数据的实际网站正在使用pw=<pw>

String.format("id=%s&password=%s", [...]更改为String.format("id=%s&pw=%s", [...]后,它就像魅力一样。