NSoup是JSoup的Net移植版本。使用方法基本一致。
如果项目涉及HTML的处理,强烈推荐NSoup,毕竟字符串截断太苦逼了。
下载地址:http://nsoup.codeplex.com/
#region 抓取页面html public void bind() { NSoup.Nodes.Document doc = NSoup.NSoupClient.Connect("http://www.haishunsh.com/list/?125_1.html").Get(); //获取页面的dom对象 Element o = doc.GetElementsByClass("case").First(); //搜索页面中的第一个class为“case”里面的子节点 } #endregion
具体的一些查找节点的方法与JSoup一致,这个就可以轻松获取到一个页面的dom对象,然后可以通过节点查找得到我们想要的内容。