【发布时间】:2010-02-24 11:54:02
【问题描述】:
我正在尝试从 XML 字符串编写“文档”列表,但我想知道获取某个属性节点值的最佳方法是什么。
更具体地说,在示例中,我想将 aDocument.Source 的值设置为“字段”节点的文本“源”,该节点具有“名称”属性的“源”值。
示例 XML:
<doc>
<docitem>3</docitem>
<docid>129793</docid>
<doctitle>Some Title</doctitle>
<docdate>2009-07-03</docdate>
<metadata>
<field name="Date">2009-07-03 14:45:00</field>
<field name="SourceArea">The Source Area</field>
<field name="Source">The Source</field>
<field name="Organisation">Some Organisation</field>
</metadata>
<summary>
<summarytext>Some Summary</summarytext>
</summary>
</doc>
示例代码
protected override List<Document> GetDocuments(string xmlString)
{
//Parse the string
XDocument xDocument = XDocument.Parse(xmlString);
//Create a List of Document objects, from the doc xml element.
List<Document> documents = (from doc in xDocument.Descendants("doc")
select new Document
{
DocId = Convert.ToInt32(doc.Element("docid").Value),
DocTitle = doc.Element("doctitle").Value,
DocDateTime = DateTime.Parse(doc.Element("docdate").Value),
DocSummary = doc.Element("summary").Value,
DocBody = "",
DocUrl = doc.Element("docid").Value,
Source = "" //CODE NEEDED
}
).ToList<Document>();
return documents;
}
【问题讨论】:
标签: c# xml linq linq-to-xml