使用XmlDocument在c#中检索值

时间:2013-07-01 02:19:23

标签: c# parsing xmldocument

我正在使用XmlDocument()来解析像我这样的EpubReader应用程序的文件,例如**。opf **。

<item id="W01MB154" href="01MB154.html" media-type="application/xhtml+xml" />
<item id="W000Title" href="000Title.html" media-type="application/xhtml+xml" />

  <itemref idref="W000Title" />
  <itemref idref="W01MB154" />

这些值在同一个文件中。

此处我知道标记内 id 的值,之后我想知道 href 元素的值。

我要做的是将 itemref 标记中的 idref 元素值与标记 id 的元素值进行比较项目即可。在这里,我知道 id W01MB154

简单地说,我想知道 id 的下一个值,即 href 元素,使用XmlDocument()。

2 个答案:

答案 0 :(得分:6)

在代码加载并解析content.opf文件后没有任何错误。

要迭代并比较上面的xml,您可以使用以下代码:

try
{
    XmlDocument xDoc = new XmlDocument();
    xDoc.Load("content.opf");

    XmlNodeList items = xDoc.GetElementsByTagName("item");
    foreach (XmlNode xItem in items)
    {
        string id = xItem.Attributes["id"].Value;
        string href= xItem.Attributes["href"].Value;
    }
}
catch (Exception ex)
{
    System.Diagnostics.Debug.WriteLine(ex.Message);
}

答案 1 :(得分:5)

您可以从以下代码开始。当我执行它时,我得到适当的输出:

string str = @"<?xml version='1.0' encoding='UTF-8'?><root><items><item id='W01MB154' href='01MB154.html' media-type='application/xhtml+xml' /><item id='W000Title' href='000Title.html' media-type='application/xhtml+xml' /></items><itemrefs><itemref idref='W000Title' /><itemref idref='W01MB154' /></itemrefs></root>";
XmlDocument xml = new XmlDocument();
xml.LoadXml(str);  // suppose that str string contains the XML data. You may load XML data from a file too.

XmlNodeList itemRefList = xml.GetElementsByTagName("itemref");
foreach (XmlNode xn in itemRefList)
{
    XmlNodeList itemList = xml.SelectNodes("//root/items/item[@id='" + xn.Attributes["idref"].Value + "']");
    Console.WriteLine(itemList[0].Attributes["href"].Value);
}

输出:

  

000Title.html

     

01MB154.html

使用的XML是:

<?xml version='1.0' encoding='UTF-8'?>
<root>
    <items>
        <item id='W01MB154' href='01MB154.html' media-type='application/xhtml+xml' />
        <item id='W000Title' href='000Title.html' media-type='application/xhtml+xml' />
    </items>
    <itemrefs>
        <itemref idref='W000Title' />
        <itemref idref='W01MB154' />
    </itemrefs>
</root>
  

检查XML文档的结构和XPath表达式。