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

想要个函数,参数是两个:a 节点名 b 属性名
然后返回该节点的指定属性值。
恳求大虾们提供帮助。

//xmlFile是xml文件,nodeName是节点名,attributeName是节点的属性名,因为节点名是可以重复的,所以用list存放返回值
public List<string> GetAttribute(string xmlFile, string nodeName, string attributeName)
{
List<string> retList = new List<string>();
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;
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-04-22
说实话,没理解的很清楚,不知道是不是这个
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读出的信息
相似回答