如何反序列化较大的xml文件到C#类中的一部分?(How to deserialize only p

2019-08-08 09:19发布

我已经阅读如何反序列化XML,但还没有想通了,我应该写的代码,以符合我的需求的方式的一些帖子和文章,所以...我道歉另一个问题有关反序列化XML))

我有我需要反序列化大(50 MB)的XML文件。 我用XSD.EXE获得文档的比自动生成的C#类,我把我的项目文件XSD架构。 我想从这个XML文件中的一些(不是全部)的数据,并把它变成我的SQL数据库。

下面是该文件(简体,XSD是非常大)的层次结构:

public class yml_catalog 
{
    public yml_catalogShop[] shop { /*realization*/ }
}

public class yml_catalogShop
{
    public yml_catalogShopOffersOffer[][] offers { /*realization*/ }
}

public class yml_catalogShopOffersOffer
{
    // here goes all the data (properties) I want to obtain ))
}

这里是我的代码:

第一种方法:

yml_catalogShopOffersOffer catalog;
var serializer = new XmlSerializer(typeof(yml_catalogShopOffersOffer));
var reader = new StreamReader(@"C:\div_kid.xml");
catalog = (yml_catalogShopOffersOffer) serializer.Deserialize(reader);//exception occures
reader.Close();

我得到InvalidOperationException异常:有一个错误的XML(3,2)文件

第二种方法:

XmlSerializer ser = new XmlSerializer(typeof(yml_catalogShopOffersOffer));
yml_catalogShopOffersOffer result;
using (XmlReader reader = XmlReader.Create(@"C:\div_kid.xml"))          
{
    result = (yml_catalogShopOffersOffer)ser.Deserialize(reader); // exception occures
}

InvalidOperationException异常:有是XML(0,0)文档中的错误

第三:我想反序列化整个文件:

 XmlSerializer ser = new XmlSerializer(typeof(yml_catalog)); // exception occures
 yml_catalog result;
 using (XmlReader reader = XmlReader.Create(@"C:\div_kid.xml"))          
 {
     result = (yml_catalog)ser.Deserialize(reader);
 }

而我得到以下几点:

error CS0030: The convertion of type "yml_catalogShopOffersOffer[]" into "yml_catalogShopOffersOffer" is not possible.

error CS0029: The implicit convertion of type "yml_catalogShopOffersOffer" into "yml_catalogShopOffersOffer[]" is not possible.

那么,如何解决(或覆盖)的代码没有得到异常?

编辑:此外,当我写:

XDocument doc = XDocument.Parse(@"C:\div_kid.xml");

的XmlException occures:上根级别,串1,位置1未经许可的数据。

下面是XML文件的第一个字符串:

<?xml version="1.0" encoding="windows-1251"?>

编辑2:XML文件短例如:

<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE yml_catalog SYSTEM "shops.dtd">
<yml_catalog date="2012-11-01 23:29">
<shop>
   <name>OZON.ru</name>
   <company>?????? "???????????????? ??????????????"</company>
   <url>http://www.ozon.ru/</url>
   <currencies>
     <currency id="RUR" rate="1" />
   </currencies>
   <categories>
      <category id=""1126233>base category</category>
      <category id="1127479" parentId="1126233">bla bla bla</category>
      // here goes all the categories
   </categories>
   <offers>
      <offer>
         <price></price>
         <picture></picture>
      </offer>
      // other offers
   </offers>
</shop>
</yml_catalog>

PS我已经acccepted答案(这是完美的)。 但现在我需要找到“基地类别”的使用的categoryId每个发售。 数据是分层的和基座类别是没有“parentId的”属性的类别。 所以,我写了一个递归方法找到了“基础类”,但它永远不会结束。 好像algorythm不是非常快))
这里是我的代码(在main()方法)

var doc = XDocument.Load(@"C:\div_kid.xml");
var offers = doc.Descendants("shop").Elements("offers").Elements("offer");
foreach (var offer in offers.Take(2))
        {
            var category = GetCategory(categoryId, doc);
            // here goes other code
        }

Helper方法:

public static string GetCategory(int categoryId, XDocument document)
    {
        var tempId = categoryId;
            var categories = document.Descendants("shop").Elements("categories").Elements("category");
            foreach (var category in categories)
            {
                if (category.Attribute("id").ToString() == categoryId.ToString())
                {
                    if (category.Attributes().Count() == 1)
                    {
                        return category.ToString();
                    }
                    tempId = Convert.ToInt32(category.Attribute("parentId"));
                }
            }
        return GetCategory(tempId, document);
    }

我可以使用递归在这样的情况? 如果没有,怎么我还能找到“基础类”?

Answer 1:

给的LINQ to XML格式的尝试。 XElement result = XElement.Load(@"C:\div_kid.xml");

在LINQ查询是辉煌的,但在一开始承认这一点都不奇怪。 你像语法,或者使用lambda表达式一个SQL从文档中选择节点。 然后创建匿名对象(或使用现有的类)包含您所感兴趣的数据。

最好是看到它在行动。

  • 以XML LINQ的杂例子
  • 使用XQuery和lambda表达式简单样品
  • 样品表示命名空间
  • 有万吨以上MSDN上。 搜索的LINQ to XML。

根据您的示例XML和代码,这里有一个具体的例子:

var element = XElement.Load(@"C:\div_kid.xml");
var shopsQuery =
    from shop in element.Descendants("shop")
    select new
    {
        Name = (string) shop.Descendants("name").FirstOrDefault(),
        Company = (string) shop.Descendants("company").FirstOrDefault(),
        Categories = 
            from category in shop.Descendants("category")
            select new {
                Id = category.Attribute("id").Value,
                Parent = category.Attribute("parentId").Value,
                Name = category.Value
            },
        Offers =
            from offer in shop.Descendants("offer")
            select new { 
                Price = (string) offer.Descendants("price").FirstOrDefault(),
                Picture = (string) offer.Descendants("picture").FirstOrDefault()
            }

    };

foreach (var shop in shopsQuery){
    Console.WriteLine(shop.Name);
    Console.WriteLine(shop.Company);
    foreach (var category in shop.Categories)
    {
        Console.WriteLine(category.Name);
        Console.WriteLine(category.Id);
    }
    foreach (var offer in shop.Offers)
    {
        Console.WriteLine(offer.Price);
        Console.WriteLine(offer.Picture);
    }
}  

作为一个额外的:这里是如何从平面反序列化类的树category的元素。 你需要一个合适的类来容纳他们,因为儿童的名单必须有一个类型:

class Category
{
    public int Id { get; set; }
    public int? ParentId { get; set; }
    public List<Category> Children { get; set; }
    public IEnumerable<Category> Descendants {
        get
        {
            return (from child in Children
                    select child.Descendants).SelectMany(x => x).
                    Concat(new Category[] { this });
        }
    }
}

要创建一个包含所有不同类别的文档中的列表:

var categories = (from category in element.Descendants("category")
                    orderby int.Parse( category.Attribute("id").Value )
                    select new Category()
                    {
                        Id = int.Parse(category.Attribute("id").Value),
                        ParentId = category.Attribute("parentId") == null ?
                            null as int? : int.Parse(category.Attribute("parentId").Value),
                        Children = new List<Category>()
                    }).Distinct().ToList();

然后组织成一棵树(来自大量举债平列表层次 ):

var lookup = categories.ToLookup(cat => cat.ParentId);
foreach (var category in categories)
{
    category.Children = lookup[category.Id].ToList();
}
var rootCategories = lookup[null].ToList();

为了找到其中包含根theCategory

var root = (from cat in rootCategories
            where cat.Descendants.Contains(theCategory)
            select cat).FirstOrDefault();


文章来源: How to deserialize only part of a large xml file to c# classes?