我正在尝试遍历我的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>
答案 0 :(得分:43)
试试这个。不确定为什么需要第二个文档。
foreach (XElement xe in doc.Descendants("Profile"))
{
MessageBox.Show(xe.Element("username").Value);
}
答案 1 :(得分:4)
更容易使用XPathDocument和XPath表达式。
var doc = new XPathDocument("files\\config.xml")
foreach (var username in doc.CreateNavigator().Select("//username")
{
...
}
答案 2 :(得分:1)
如果您正在寻找内部节点,即递归之类,则可以检查元素是否具有元素。 例如,你从数据库中读取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
}
}