我有以下功能将通过代理获取某些网站的html源代码,其工作正常,但有时服务器返回503(服务器不可用)或任何其他异常它永远不会进入catch语句。
在catch语句中,如果请求在4次尝试后仍然失败,那么函数应该递归调用自身,最多4次,然后返回null。private static string GetPageHTML(string link,bool useprx)
{
int tryCount = 0;
WebClient client = new WebClient() { Proxy = new WebProxy(ProxyManager.GetProxy()) { Credentials = new NetworkCredential("xx", "xx") } };
try
{
return client.DownloadString(link);
}
catch (WebException ex)
{
var statuscode = ((HttpWebResponse)ex.Response).StatusCode;
{
if (tryCount == 3)
{
return null;
}
switch (statuscode)
{
case (HttpStatusCode.Forbidden):
tryCount++;
System.Threading.Thread.Sleep(5000);
return GetPageHTML(link, useprx);
case (HttpStatusCode.NotFound):
return null;
case (HttpStatusCode.GatewayTimeout):
tryCount++;
System.Threading.Thread.Sleep(5000);
return GetPageHTML(link, useprx);
case (HttpStatusCode.ServiceUnavailable) :
tryCount++;
System.Threading.Thread.Sleep(5000);
return GetPageHTML(link, useprx);
default: return null;
}
}
}
}
那为什么它永远不会进入catch语句?
答案 0 :(得分:3)
它可能返回一个非WebException类型的异常。 要捕获阳光下的所有异常,您必须将“捕获异常”作为后备包含
在WebException catch之后添加fallback catch,并调试它以查看它实际返回的异常类型