4

我正在尝试解析网页。但它给出了一个错误。请帮我。谢谢。

这是代码:

   static void myMain()
    {
        using (var client = new WebClient())
        {
            string data = client.DownloadString("http://www.google.com");
            HtmlDocument doc = new HtmlDocument();
            doc.LoadHtml(data);

            var nodes = doc.DocumentNode.SelectNodes("//a[@href]");
            foreach (HtmlNode link in nodes)
            {
                HtmlAttribute att = link.Attributes["href"];
                Console.WriteLine(att.Value);
            }
        }
    }

The type 'System.Windows.Form.HtmlDocument' has no constructors defined.我已经包含了 HAP ,这是错误的。

谢谢

4

1 回答 1

7

改变

HtmlDocument doc = new HtmlDocument(); 

HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();

因为你不想和System.Windows.Form.HtmlDocument

于 2012-08-19T10:18:27.470 回答