使用c#解析XML数据
本文关键字:数据 XML 解析 使用 | 更新日期: 2023-09-27 18:21:06
我在c#中使用XMLReaderClass已经有一段时间了,似乎无法理解这个概念。基本上,我想遍历XML文件,如果XML文档中的类别与我传入的类别相同,我想将其名称添加到List中。
这是xml
<?xml version="1.0" encoding="utf-8" ?>
<!-- Do not modify this xml file. -->
<Products>
<product category="Food" name="Baking potatoes" />
<product category="Food" name="Chicken fillet" />
<product category="Food" name="Chocolate gateau" />
<product category="Food" name="Madras curry sauce" />
<product category="Food" name="Organic carrots" />
<product category="Food" name="Semi-skimmed milk" />
<product category="Home" name="Washing powder" />
<product category="Home" name="Rubber gloves" />
<product category="Home" name="Spray wax" />
<product category="Home" name="Dish soap" />
<product category="Pet" name="Cat food" />
<product category="Pet" name="Dog food" />
<product category="Pet" name="Collar" />
<product category="Pet" name="Leash" />
</Products>
这是我已经开始工作但没有走多远的代码:(
public ReadOnlyCollection<string> GetProductsByCategory(string category)
{
List<string> returnList = new List<string>();
using (XmlReader productsReader = GetProductsReader())
{
productsReader.MoveToContent();
while (productsReader.Read())
if(productsReader.NodeType == XmlNodeType.Element)
{
if (productsReader)
{
if productsReader
}
}
}
return new ReadOnlyCollection<string>(returnList);
}
在这里使用XmlReader
会很麻烦。在这里使用LINQ to XML,而使用API,这将使您的生活更轻松。
public static ReadOnlyCollection<string> GetProductsByCategory(string category)
{
using (var reader = GetProductsReader())
{
var doc = XDocument.Load(reader);
var results = doc.Element("Products")
.Elements("product")
.Where(e => (string)e.Attribute("category") == category)
.Select(e => (string)e.Attribute("name"))
.ToList();
return new ReadOnlyCollection<string>(results);
}
}
如果出于任何原因,您仍然希望使用XmlReader
,您可以这样阅读:
public static ReadOnlyCollection<string> GetProductsByCategory(string category)
{
var results = new List<string>();
var settings = new XmlReaderSettings
{
IgnoreWhitespace = true,
IgnoreComments = true,
};
using (var reader = XmlReader.Create(GetProductsReader(), settings))
{
reader.MoveToContent();
reader.ReadStartElement("Products");
do
{
if (reader.IsStartElement("product"))
{
if (reader.MoveToFirstAttribute())
{
string currentCategory = null;
string currentName = null;
do
{
switch (reader.Name)
{
case "category":
currentCategory = reader.ReadContentAsString();
break;
case "name":
currentName = reader.ReadContentAsString();
break;
}
} while (reader.MoveToNextAttribute());
if (currentCategory == category && currentName != null)
results.Add(currentName);
}
}
} while (reader.ReadToNextSibling("product"));
}
return new ReadOnlyCollection<string>(results);
}
对于超大的XML文件,使用XmlReader
扫描文档可能比使用XmlDocument
或XDocument
更高效,因为后者需要将整个文件加载到内存中。访问XmlReader.LocalName
属性以确定读取器所在的元素的类型,并调用XmlReader.GetAttribute()
方法以获取属性的值。
public ReadOnlyCollection<string> GetProductsByCategory(string category)
{
List<string> products = new List<string>();
using (XmlReader productsReader = GetProductsReader())
{
productsReader.MoveToContent();
while (productsReader.Read())
{
if (productsReader.NodeType == XmlNodeType.Element &&
productsReader.LocalName == "product" &&
productsReader.GetAttribute("category") == category)
{
products.Add(productsReader.GetAttribute("name"));
}
}
}
return new ReadOnlyCollection<string>(products);
}
我会使用LINQ to XMl(XDocument)而不是旧的阅读器。这将让您开始(假设您的xml位于c:''temp目录中的文件中):
var doc = XDocument.Load(@"c:'temp'testxml.xml");
foreach(var element in doc.Elements("Products").Elements())
{
Console.WriteLine(element.Attribute("category"));
}
查看Linq到XML,这里有一个查找特定属性的示例
http://msdn.microsoft.com/en-us/library/bb387041.aspx