0
    Uri url3 = new Uri("http://www.bigpara.com/borsa/gunun-ozeti/");
    WebClient client3 = new WebClient();
    string html3 = client3.DownloadString(url3);
    HtmlAgilityPack.HtmlDocument dokuman3 = new HtmlAgilityPack.HtmlDocument();
    dokuman3.LoadHtml(html3);

大家好,我想问你一些关于htmlagilitypack错误处理的问题。

虽然在 url3 地址“ http://www.bigpara.com/borsa/gunun-ozeti/ ”在我的网站中自我刷新是给出错误消息。

错误消息是:

System.NullReferenceException 和远程服务器未解析

我应该做些什么 ?下一个问题是

编码问题
如何**encoding(UTF-8)**格式化字符串。
特殊字符无法正常显示。
我如何防止这个错误?
非常感谢你。

4

1 回答 1

2

我可以回答部分问题,一个与编码有关。因为我无法复制加载 HTML 的问题。

如果您使用 HtmlWeb 对象,它将允许您指定额外的参数来解析 HTML,这里使用的一个是 AutoDetectEncoding。

Uri url3 = new Uri("http://www.bigpara.com/borsa/gunun-ozeti/");
HtmlAgilityPack.HtmlWeb web = new HtmlAgilityPack.HtmlWeb();
web.AutoDetectEncoding = true;
HtmlAgilityPack.HtmlDocument dokuman3 = web.Load(url3.AbsoluteUri);

希望这可以帮助!

于 2013-08-19T12:58:03.770 回答