5

我有这样的事情:

class MyTask
{
    public MyTask(int id)
    {
        Id = id;
        IsBusy = false;
        Document = new HtmlDocument();
    }

    public HtmlDocument Document { get; set; }
    public int Id { get; set; }
    public bool IsBusy { get; set; }
}

class Program
{
    public static void Main()
    {
        var task = new MyTask(1);
        task.Document.LoadHtml("http://urltomysite");
        if (task.Document.DocumentNode.SelectNodes("//span[@class='some-class']").Count == 0)
        {
            task.IsBusy = false;
            return;
        }   
    }
}

现在,当我启动我的程序时,它会在语句上抛出一个错误if,说Object reference not set to an instance of an object.. 为什么它不加载我的页面?我在这里做错了什么?

4

2 回答 2

17

您正在寻找.Load().

.LoadHtml()期望获得物理 HTML。你给一个网站去:

HtmlWeb website = new HtmlWeb();
HtmlDocument rootDocument = website.Load("http://www.example.com");
于 2013-11-05T16:08:15.973 回答
1

除了阿兰的回答

如果.SelectNodes("//span[@class='some-class']")不返回任何节点,null然后对其执行 aCount将给出此异常。

尝试

if (task.Document.DocumentNode.SelectNodes("//span[@class='some-class']") != null && 
    task.Document.DocumentNode.SelectNodes("//span[@class='some-class']").Count == 0)
    {
        task.IsBusy = false;
        return;
    }   
于 2013-11-05T16:14:26.520 回答