c# - 将 XML 映射到 C# 中的类

标签 c# xml attributes deserialization poco

我希望使用 XmlSerializer 对象将嵌套元素中的多个 XML 属性映射到单个 POCO 类中。

XML

<products grand-total="100">
    <one price="50" />
    <two price="20" />
    <tree price="30" />
</products>

POCO

public class Product
{
    public int GrandTotal { get; set; }
    public int OnePrice { get; set; }
    public int TwoPrice { get; set; }
    public int ThreePrice { get; set; }
}

C#

var doc = XDocument.Load("XmlDoc.xml");
var serializer = new XmlSerializer(typeof(Product));
var reader = doc.Root.CreateReader();
var temp = (Product)serializer.Deserialize(reader);

如果有人知道我如何做到这一点,那就太棒了。

谢谢。

最佳答案

如果您被锁定在这个 XML 架构中,这将序列化或反序列化您的 XML 和对象数据:

using System;
using System.IO;
using System.Xml;
using System.Xml.Serialization;

public class ProductsViewModel
{
    public string Xml { get; set; }

    public Product Poco { get; set; }

    public ProductsViewModel()
    {
        Xml = Serialize(new Product());

        Poco = (Product)Deserialize(Xml, typeof(Product));
    }

    public class Price
    {
        [XmlAttribute(AttributeName = "price")]
        public int Value { get; set; }
    }

    [XmlRoot(ElementName = "products")]
    public class Product
    {
        [XmlAttribute(AttributeName = "grand-total")]
        public int GrandTotal { get; set; }

        [XmlElement(ElementName = "one")]
        public Price OnePrice { get; set; }

        [XmlElement(ElementName = "two")]
        public Price TwoPrice { get; set; }

        [XmlElement(ElementName = "tree")]
        public Price ThreePrice { get; set; }

        public Product()
        {
            GrandTotal = 100;
            OnePrice = new Price { Value = 50 };
            TwoPrice = new Price { Value = 20 };
            ThreePrice = new Price { Value = 30 };
        }
    }

    private string Serialize(object obj)
    {
        var serializer = new XmlSerializer(obj.GetType());

        using (var stringWriter = new StringWriter())
        {
            serializer.Serialize(stringWriter, obj);
            return stringWriter.ToString();
        }
    }

    private object Deserialize(string serializedObj, Type type)
    {
        var serializer = new XmlSerializer(type);

        using (var stringReader = new StringReader(serializedObj))
        using (var xmlTextReader = new XmlTextReader(stringReader))
        {
            return serializer.Deserialize(xmlTextReader);
        }
    }
}

关于c# - 将 XML 映射到 C# 中的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29085381/

相关文章:

c++ - C++ 设计中的属性处理

c# - 使用naudio获取1秒音频文件的分贝

c# - String.Replace .NET Framework 的内存效率和性能

javascript - 如何使用 jQuery 获取图像 ID?

JAVA,NodeList XML在不知道XML内容的情况下获取所有子节点

swift - 异常 xml 的非常奇怪的解析

python - Python 中 int 实例的 int 值存储在哪里?

c# - 从 C# 到 VB.NET 的 Linq 查询

C# TLS 1.1 实现

php - 从 MySQL 和 PHP 输出 XML (PDO)