请教xml节点列表遍历
1个回答
展开全部
XmlDocument xmlDoc = new XmlDocument();
// 载入xml文件
xmlDoc.Load("1.xml");
// 找到type='C004'的doc节点
XmlNode node = xmlDoc.SelectSingleNode("//doc[@type='C004']");
// 找到doc的父节点
XmlNode pnode = node.ParentNode;
遍历节点:
foreach (XmlNode nd in xmlDoc.DocumentElement.ChildNodes)
{ // nd 遍历所有docctrl节点
if (nd.hasChildNodes)
{
foreach (XmlNode n in nd.ChildNodes)
{ // n 遍历所有doc和ctrl节点
string stype = n.Attributes["type"].Value;
string s = n.InnerText; // 节点的值
}
}
}
// 载入xml文件
xmlDoc.Load("1.xml");
// 找到type='C004'的doc节点
XmlNode node = xmlDoc.SelectSingleNode("//doc[@type='C004']");
// 找到doc的父节点
XmlNode pnode = node.ParentNode;
遍历节点:
foreach (XmlNode nd in xmlDoc.DocumentElement.ChildNodes)
{ // nd 遍历所有docctrl节点
if (nd.hasChildNodes)
{
foreach (XmlNode n in nd.ChildNodes)
{ // n 遍历所有doc和ctrl节点
string stype = n.Attributes["type"].Value;
string s = n.InnerText; // 节点的值
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询