我如何解析html文件在windows phone 7

本文关键字:windows phone 文件 何解析 html | 更新日期: 2023-09-27 18:03:30

我使用下面给出的xml文件,我想解析html文件。

<Description>
 <Fullcontent>
   <div id="container" class="cf">
    <link rel="stylesheet" href="http://dev2.mercuryminds.com/imageslider/css/demo.css" type="text/css" media="screen" />
        <ul class="slides">
            <li>Sonam Kapoor<img src="http://deys.jpeg"/></li>
            <li>Amithab<img src="http://deysAmithab.jpeg"/></li>
            <li>sridevi<img src="http://deyssridevi.jpeg"/></li>
            <li>anil-kapoor<img src="http://deysanil-kapoor.jpeg"/></li>
         </ul>
    </div>
  </Fullcontent>
</Description>

我想绑定图像与名称

我如何解析html文件在windows phone 7

你可以安装 htmllagilitypack 从NuGet(只需搜索敏捷)。解析也很简单。下面是选择图像标签和获取源属性的方法:

HtmlDocument html = new HtmlDocument();
html.Load(path_to_file);
var urls = html.DocumentNode.SelectNodes("//ul[@class='slides']/li/img")
                            .Select(node => node.Attributes["src"].Value);