Too many redirects occurred trying to load URL

Jsoup 异常:
我很奇怪为什么会报这样的错误,是因为请求头里面的信息不完整吗?
有木有朋友遇到过类似的问题,求解答 。

Response res = Jsoup
                    .connect(loginUrl)
                    .data(postDatas)
                    .header("Host", host)
                    .header("Content-Type",
                            "application/x-www-form-urlencoded")
                    .userAgent(UA_IE9).timeout(TIME_OUT)
                    .method(org.jsoup.Connection.Method.POST).execute();

检查下是不是发生了重定向循环。