读取xml文件转成List<T>对象的两种方法

点击打开链接

读取xml文件,是项目中经常要用到的,所以就总结一下,最近项目中用到的读取xml文件并且转成List<T>对象的方法,加上自己知道的另一种实现方法。

  就以一个简单的xml做例子。

xml格式如下:

<?xml version="1.0" encoding="utf-8" ?>
<products>
    <product name="West Side Story" price="9.99" supplierId="1" />
    <product name="Assassins" price="14.99" supplierId="2" />
    <product name="Frogs" price="13.99" supplierId="1" />
    <product name="Sweeney Todd" price="10.99" supplierId="3" />
</products>


Product对象如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace XmlToList1
{
   public class Product
    { 
       [XmlAttribute(AttributeName = "name")]
       public string Name
       {
           get;
           set;
       }

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

       [XmlAttribute(AttributeName = "supplierId")]
       public decimal SupplierId { get; set; }
    }
}


要实现的就是要把xml文件的内容读取出来转成List<Product>对象,需求明白了,那接下来就来介绍实现的方法。

 

一、利用.net中的XmlSerializer类提供的方法

1、首先要在Product、Products类中的每个属性上加上与xml对应的描述字段,如下代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace XmlToList1
{
   public class Product
    { 
       [XmlAttribute(AttributeName = "name")]
       public string Name
       {
           get;
           set;
       }

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

       [XmlAttribute(AttributeName = "supplierId")]
       public decimal SupplierId { get; set; }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace XmlToList1
{
    //[XmlRoot("products")]
    [XmlRoot("products")]
   public class Products
   {
       [XmlElement("product")]
       //public Product[] Items { get; set; }
       public Product[] Items//Product为类名字
        {
            get;
            set;
        }
   }
}


注意AttributeName一定要和xml中的一致。

2、相应的对应关系建立好了之后,下面就来进行读取反序列化,代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using System.IO;

namespace XmlToList1
{
    public class LoadXml
    {
        //private static IList<Product> products = new List<Product>();
        private static IList<Product> products = new List<Product>();
        static LoadXml()
        {
            try
            {
                using (TextReader reader = new StreamReader("data.xml"))
                {
                    var ser = new XmlSerializer(typeof(Products));
                    var items = (Products)ser.Deserialize(reader);
                    if (items != null)
                    {
                        products = items.Items;
                    }
                }
            }
            catch (System.Exception ex)
            {
                Console.WriteLine("出错了," + ex.Message);
            }
        }
       

        public static IList<Product> GetProducts()
        {
            return products;
        }
    }
}


这个方法里也没什么特别的就是先读取.xml内容,然后再反Deserialize方法反序化xml内容转成Products。

这种方法大致就这么简单,我个人是比较倾向于这种方法的,因为它不用自己去解析xml中相应的属性等内容,也比较灵活,xml中的属性名变了,在类中相应的属性上改一下AttributeName的值就可以了。

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值