HtmlAgilityPACK显示错误“;给定的路径';s格式不受支持”;从web服务器加载html页面时

本文关键字:web 支持 服务器 加载 html 格式 错误 显示 路径 HtmlAgilityPACK | 更新日期: 2023-09-27 18:00:45

我正在使用我的本地Apache服务器,它的地址是127.0.0.1。我试图使用html敏捷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");

HtmlAgilityPACK显示错误“;给定的路径';s格式不受支持”;从web服务器加载html页面时

doc.Load获取磁盘上本地文件的路径。

您应该使用HtmlWeb类:

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