本文实例讲述了C#使用HtmlAgilityPack抓取糗事百科内容的方法。分享给大家供大家参考。具体实现方法如下:
Console.WriteLine("*****************糗事百科24小时热门*******************"); Console.WriteLine("请输入页码,输入0退出"); string page = Console.ReadLine(); while (page!="0") { HtmlWeb htmlWeb = new HtmlWeb(); HtmlDocument htmlDoc = htmlWeb.Load("http://www.qiushibaike.com/hot/page/"+page); HtmlNodeCollection qiuNodeList = htmlDoc.DocumentNode.SelectNodes("//*[@class=‘content‘]"); foreach (HtmlNode qiuCont in qiuNodeList) { Console.WriteLine(qiuCont.InnerHtml); Console.WriteLine("******************************************************************************"); } Console.WriteLine("请输入页码,输入0退出"); page = Console.ReadLine(); }
运行效果如下图所示:
时间: 2024-11-07 05:44:29