0

我有一个xml文件如下,

<rss> 
<report name="rpt1"> 
<title>AAA</title> 
<image/> 
<weblink/> 
<pdflink/> 
<pdfsize/> </report> 
<report name="rpt2"> 
<title>BBB</title> 
<image/> 
<weblink/> 
<pdflink/> 
<pdfsize/> </report> 
</rss>

我必须遍历链接并转到报告节点并获取每个报告的标题/图像/weblink/pdflink/pdfsize。我如何使用 xml 阅读器来做到这一点。我谷歌并看到遍历单个节点但不是循环。任何输入?

4

1 回答 1

1

您可以使用LINQtoXML从您的 XML 中获取项目。

var path = Server.MapPath("~/Content/pairs.xml");    
XElement elm = XElement.Load(path);
//you can also load the XML from stream / string also

if (elm != null)
{
    foreach (var item in elm.Elements("report"))
    {
        string title = item.Element("title").Value;
        string image = item.Element("image").Value;
        string weblink= item.Element("weblink").Value;
        //do whatever with the values          
    }
}
于 2012-08-08T20:11:20.797 回答