我正在使用本地Apache服务器,其地址为127.0.0.1。我试图使用HTML Agility PACk从此服务器将html页面加载到C#程序,但显示


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

        docHtml.Load(@"htttp://127.0.0.1/2.htm"); // <---  error pointer showing here

        foreach(HtmlNode link in docHtml.DocumentNode.SelectNodes("//a[@href]"))

        {  link.Attributes.Append("class","personal_info");


        }
        docHtml.Save("testHTML.html");


    }

非常感谢@Slaks在您提出建议后,我更改了COde及其正常工作
 HtmlAgilityPack.HtmlDocument docHtml = new HtmlAgilityPack.HtmlDocument();
        HtmlAgilityPack.HtmlWeb docHFile = new HtmlWeb();

        docHtml = docHFile.Load("http://127.0.0.1/2.html");

最佳答案

doc.Load采用磁盘上本地文件的路径。

您应该使用HtmlWeb类:

HtmlDocument docHtml = new HtmlWeb().Load(url);

10-06 12:20