我需要读取这个XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<Products>
<Product Name="Prod1">
<Description>Desc1</Description >
<Price>100</Price >
<Stock>200</Stock>
</Product>
<Product Name="Prod2">
<Description>Desc2</Description >
<Price>50</Price >
<Stock>400</Stock>
</Product>
</Products>
我的想法是这样做:
public ICollection<ProductDTO> importtProducts()
{
XmlSerializer deserializer = new XmlSerializer(typeof(List<ProductDTO>));
TextReader textReader = new StreamReader(@"c:\importers\xmlimporter.xml");
List<ProductDTO> prods;
prods = (List<ProductDTO>)deserializer.Deserialize(textReader);
textReader.Close();
XDocument doc = XDocument.Load(@"c:\importers\xmlimporter.xml");
foreach (var prod in doc.Root.Descendants("Product").Distinct())
{
//work with the prod in here
}
return some prods..;
}
但是根项XmlSerializer类型有一些问题。
有人知道我应该用哪种类型吗?
列表,IList,ICollection,IEnumerable….
谢谢!
最佳答案
考虑使用列表创建一个products对象。然后可以将对象标记为:
public class Products
{
[XmlElement("Product", Type = typeof(Product))]
public List<Product> Products { get; set; }
}
public class Product
{
[XmlAttribute("Name")]
public string Name { get; set; }
[XmlElement("Description")]
public string Description { get; set; }
...
}
这将在使用时生成具有Product类型列表的Products类:
XmlSerializer deserializer = new XmlSerializer(typeof(Products));
不将类型指定为列表
更新
我添加了xmltattribute(“name”)来演示附加问题的解决方案。@普拉蒂克·盖夸德在我之前转达了解决方案。
关于c# - 当XML具有特定的根元素名称时,如何将XML文件正确地读取到集合中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40391131/