4

我正在尝试登录这个网站:http ://deeproute.com

这是我的代码。

            Connection.Response res = null;
            Connection homeConnection = null;
            Document homePage = null;
            Map<String, String> loginCookies = null;
            try {
                res = Jsoup.connect("http://www.deeproute.com/")
                        .data("cookieexists", "false")
                        .data("name", user)
                        .data("password", pswd).method(Method.POST)
                        .execute();

            } catch (IOException e) {

                e.printStackTrace();
            }

            if (res != null) {

                loginCookies = res.cookies();

                try {
                    homePage = Jsoup.connect("http://www.deeproute.com")
                            .cookies(loginCookies).get();
                } catch (IOException e) {
                    e.printStackTrace();
                }

不幸的是,这只是在未登录状态下返回相同的页面。我究竟做错了什么?

4

2 回答 2

6

您需要在发布前阅读表格!您缺少参数 subbera=Login。


public static void main(String[] args) throws Exception {

    Connection.Response loginForm = Jsoup.connect("http://deeproute.com/deeproute/default.asp")
            .method(Connection.Method.GET)
            .execute();

    Document document = Jsoup.connect("http://deeproute.com/deeproute/default.asp")
            .data("cookieexists", "false")
            .data("name", "username")
            .data("password", "pass")
            .data("subbera", "Login")
            .cookies(loginForm.cookies())
            .post();

}
于 2013-04-20T22:55:39.723 回答
0

可能晚了几个(实际上很多)个月,但我发现我必须在网站设计非常混乱的地方进行一些网络抓取(我需要从中提取数据的网站)。还必须先登录才能获取 cookie 信息。@MariuszS 的回答很有帮助,但唯一的问题是,我不确定预期的 Map/Key-Value-Pairs 应该是什么。多亏了 Javascript,我很快就检索到了表单的键和值,并且能够成功登录。这是Javascript:

var str = "";

//the form selector i.e.
//that which is to be submitted to. In
//my case, i needed to submit the entire body
var arr = $("input[name]");

for(var i = 0, l = arr.length; i<l; i++){
str+= '.data("'+ arr[i].name +'", "'+ arr[i].value +'")'
}

将“str”的值附加到您的 Jsoup 请求之前

.method(Connection.Method.GET)
.execute();

希望这被证明对我有点帮助:)

于 2014-06-11T16:27:50.190 回答