HttpClient获取状态代码并按照重定向来获取结束页面状态代码

时间:2012-05-18 15:29:03

标签: java apache-httpclient-4.x

我正在努力让HttpClient以我想要的方式工作。这一切都在我头上。

我想要做的就是提供一个URL,URL可以指向网页,.zip文件,.doc文件和重定向,最后是上述任何一个。然后,我可以将最终状态代码打印到控制台。

有人可以帮帮我吗?到目前为止,我已经(抛出一切后的一堆代码):

DefaultHttpClient client = new DefaultHttpClient();

    client.setRedirectStrategy(new DefaultRedirectStrategy(){
        public boolean isRedirected(HttpRequest request, HttpResponse response, HttpContext context)  {
            boolean isRedirect=false;
            try {
                isRedirect = super.isRedirected(request, response, context );
            } catch (org.apache.http.ProtocolException e) {
                System.out.println("what?");
                e.printStackTrace();
            }
            if (!isRedirect) {
                int responseCode = response.getStatusLine().getStatusCode();
                System.out.println(responseCode);
                if (responseCode == 301 || responseCode == 302) {
                    System.out.println("redirect");
                    return true;
                }
            }
            return isRedirect;
        }
    });

    HttpHead test = new HttpHead("http://support.xbox.com/en-US/xbox-live/troubleshoot/game-play");
    HttpEntity httpEntity = null;
    try {
        HttpResponse response = client.execute(test);
        System.out.println(response.getStatusLine().getStatusCode());
    } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
        System.out.println(e);
        System.out.println("400");
    } catch (IOException e) {
        System.out.println("404");
        System.out.println(e);
    }

编辑:

对于这个网址:http://support.xbox.com/en-US/xbox-live/troubleshoot/game-play我得到了404.我原本预期为200。

对于http://www.google.com我按预期得到200。

对于http://tinyurl.com/2tx一个tinyurl重定向到google.com,我得到了200。

我不确定如何制作我的结果。我只是希望能够测试链接,看看它们是从最终用户的角度来看还是有效。

1 个答案:

答案 0 :(得分:1)

问题是您发送的是HEAD请求而不是GET请求,xbox网站只返回404.

使用:

HttpGet test = new HttpGet("http://support.xbox.com/en-US/xbox-live/troubleshoot/game-play");

没有任何重定向的东西对我来说很好。