web-dev-qa-db-ja.com

XDocumentのノードを反復処理する方法

Xmlドキュメントのノードを反復処理して、各ノードの<username>Ed</username>の値を取得しようとしています。 Linqを使用して最初にXDocumentをソートし、次にノードをループしようとします。これを実現するための正しいforeachループが見つからないようです。どんな助けも大歓迎です。

var doc = XDocument.Load("files\\config.xml");
var newDoc = new XDocument(new XElement("Config",
            from p in doc.Element("Config").Elements("Profile")
            orderby int.Parse(p.Element("order").Value)
            select p));


foreach (XElement xe in newDoc.Nodes())
{
    MessageBox.Show(xe.Element("username").Value);
}

// XML document
<Config>
<Profile>
    <id>Scope</id>
    <username>Scope 1</username>
    <password>...</password>
    <cdkey>0000</cdkey>
    <expkey></expkey>
    <cdkeyowner>Scope</cdkeyowner>
    <client>W2BN</client>
    <server>[IP]</server>
    <homechannel>Lobby</homechannel>
    <load>1</load>
    <order>2</order>
</Profile>
<Profile>
    <id>Scope 2</id>
    <username>Scope 2</username>
    <password>...</password>
    <cdkey>0000</cdkey>
    <expkey></expkey>
    <cdkeyowner>Scope</cdkeyowner>
    <client>W2BN</client>
    <server>[IP]</server>
    <homechannel>Lobby</homechannel>
    <load>1</load>
    <order>1</order>
</Profile>
</Config>
25
Ed R

これを試して。 2番目のドキュメントが必要な理由がわかりません。

foreach (XElement xe in doc.Descendants("Profile"))
{
    MessageBox.Show(xe.Element("username").Value);
}
46
John Sheehan

XPathDocumentとXPath式を使用する方が簡単です。

var doc = new XPathDocument("files\\config.xml")
foreach (var username in doc.CreateNavigator().Select("//username")
{
    ...
}
4

内部ノード、つまり再帰的なものを探している場合は、要素に要素があるかどうかを確認できます。たとえば、データベースからxmlを読み取ると仮定します

string xmlRoot = "select XmlItem from db";
XDocument doc = XDocument.Parse(xmlRoot);
List<XElement> xElementList = doc.Descendants().Tolist();
foreach(XElement element in xElementList )
{
  // read the element and do with your node
  if(element.HasElements)
    {
      // here you can reach nested node
    }

} 
1
Shaahin