1

我正在尝试编写一个重定向检查器,我的解决方案今天早上刚刚组合在一起,所以它不是最有效的,但它可以完成我需要它做的所有事情,除了一件事:

它只在停止之前检查两个站点,没有发生错误,它只是在“request.GetResponse() as HttpWebResponse;”上停止。第三页的行。

我尝试过使用不同的站点并更改要检查的页面组合,但它只检查两个。

有任何想法吗?

        string URLs = "/htmldom/default.asp/htmldom/dom_intro.asp/htmldom/dom_examples2.asp/xpath/default.asp";
        string sURL = "http://www.w3schools.com/";
        string[] u = Regex.Split(URLs, ".asp");

        foreach (String site in u)
        {
            String superURL = sURL + site + ".asp";

            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(superURL);

            request.Method = "HEAD";
            request.AllowAutoRedirect = false;

            var response = request.GetResponse() as HttpWebResponse;
            String a = response.GetResponseHeader("Location");

            Console.WriteLine("Site: " + site + "\nResponse Type: " + response.StatusCode + "\nRedirect page" + a + "\n\n");
        }
4

1 回答 1

5

除了如果 aWebException被抛出它会中断这一事实,我相信它只是停止的原因是你从不处理你的响应。如果您实际上有多个 URL 由同一个站点提供服务,它们将使用连接池 - 并且通过不处理响应,您不会释放连接。你应该使用:

using (var response = request.GetResponse())
{
    var httpResponse = (HttpWebResponse) response;
    // Use httpResponse here
}

请注意,我在这里投射而不是使用as- 如果响应不是an HttpWebResponse,则InvalidCastException该行上的 an 比NullReferenceException下一行的 a 提供更多信息......

于 2013-03-21T10:52:24.497 回答