C# 如何得到一XML文件中指定的节点属性值

2024-11-30 12:40:04
推荐回答(2个)
回答1:

//xmlFile是xml文件,nodeName是节点名,attributeName是节点的属性名,因为节点名是可以重复的,所以用list存放返回值
public List GetAttribute(string xmlFile, string nodeName, string attributeName)
{
List retList = new List();
XmlDocument xx = new XmlDocument();
xx.Load(xmlFile);
XmlNodeList xxList = xx.GetElementsByTagName(nodeName);
foreach (XmlNode xxNode in xxList)
{
retList.Add(xxNode.Attributes[attributeName].Value);
}
return retList;
}

回答2:

说实话,没理解的很清楚,不知道是不是这个
prive string GetSICode(string fileInfo,string a,string b)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(fileInfo);
string temp = "";
XmlNode node = doc.DocumentElement[a][b];
temp = node.InnerText.Trim();
return temp;
}

其中fileInfo 是你从xml读出的信息