<Tasks>
<AuxFiles>
<FileType AttachmentType='csv' FileFormat ='*.csv'>
</AuxFiles>
</Tasks>
如果我知道FileFormat
,那么获取AttachmentType
的C#语法是什么?
总是赞赏任何和所有帮助。
答案 0 :(得分:5)
我使用LINQ to XML:
var doc = XDocument.Load("file.xml");
var format = doc.Descendants("FileType")
.Where(x => (string) x.Attribute("AttachmentType") == type)
.Select(x => (string) x.Attribute("FileFormat"))
.FirstOrDefault();
如果没有匹配的元素,或者匹配null
的第一个FileType
没有AttachmentType
属性,则会显示FileFormat
。
答案 1 :(得分:2)
您可以使用XElement
及其查询支持。
XElement element = XElement.Parse(@"<Tasks>
<AuxFiles>
<FileType AttachmentType='csv' FileFormat ='*.csv' />
</AuxFiles>
</Tasks>");
string format = element.Descendants("FileType")
.Where(x => x.Attribute("AttachmentType").Value == "csv")
.Select(x => x.Attribute("FileFormat").Value)
.First();
Console.WriteLine(format);
答案 2 :(得分:1)
试试这段代码:
string fileFormat = string.Empty;
XmlDocument xDoc = new XmlDocument();
xDoc.Load(fileName);
XmlNodeList auxFilesList = xDoc.GetElementsByTagName("AuxFiles");
for (int i = 0; i < auxFilesList.Count; i++)
{
XmlNode item = classList.Item(i);
if (item.Attributes["AttachmentType"].Value == "csv")
{
fileFormat = item.Attributes["FileFormat"].Value;
}
}
答案 3 :(得分:0)
您可以使用XPATH查询XML文件中的任何元素。
请参阅此ULR:http://www.whitebeam.org/library/guide/TechNotes/xpathtestbed.rhtm
另请查看此SO帖子:“如何查询对等XMLNode .NET”
答案 4 :(得分:0)
另一种方法是:
XmlDocument xDoc = new XmlDocument();
xDoc.Load("path\\to\\file.xml");
// Select the node where AttachmentType='csv'
XmlNode node = xDoc.SelectSingleNode("/Tasks/AuxFiles/FileType[@AttachmentType='csv']");
// Read the value of the Attribute 'FileFormat'
var fileFormat = node.Attributes["FileFormat"].Value;