用DOM实现文章采集--采集到网页源码(14)
来源:未知 责任编辑:责任编辑 发表时间:2014-04-20 03:40 点击:次
{
//如果图片的数量小于能容忍的数量就不用检查了。
if (URLs.Count <= AllowBadNum)
{
return true;
}
int intTemp = 0;
foreach (string strUrl in URLs)
{
if (UrlExist(strUrl) == false)
{
intTemp++;
if (intTemp > AllowBadNum)
{
return false;
}
}
}
return true;
}
#endregion
}
public class RemoteRes
{
private string _code;
private string _html;
private byte[] _bytes;
private string _ContentType;
private HttpStatusCode _StatusCode;
/// <summary>
/// 返回信息的代码
/// </summary>
public string Code
{
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>