取xml文件转成List对象的两种方法

时间:2021-10-03 08:51:25

读取xml文件转成List<T>对象的两种方法(附源码)

 
读取xml文件转成List<T>对象的两种方法(附源码)

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

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

xml格式如下:

取xml文件转成List<T>对象的两种方法
1 <?xml version="1.0"?>
2 <products>
3 <product name="West Side Story" price="9.99" supplierId="1" />
4 <product name="Assassins" price="14.99" supplierId="2" />
5 <product name="Frogs" price="13.99" supplierId="1" />
6 <product name="Sweeney Todd" price="10.99" supplierId="3" />
7 </products>
取xml文件转成List<T>对象的两种方法

Product对象如下:

取xml文件转成List<T>对象的两种方法
1     public class Product
2 {
3 public string Name { get; set; }
4
5 public decimal Price { get; set; }
6
7 public decimal SupplierId { get; set; }
8 }
取xml文件转成List<T>对象的两种方法

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

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

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

    [XmlRoot("products")]
public class Products
{
[XmlElement("product")]
public Product[] Items { get; set; }
}
取xml文件转成List<T>对象的两种方法
 1     public class Product
2 {
3 [XmlAttribute(AttributeName = "name")]
4 public string Name { get; set; }
5
6 [XmlAttribute(AttributeName = "price")]
7 public decimal Price { get; set; }
8
9 [XmlAttribute(AttributeName = "supplierId")]
10 public decimal SupplierId { get; set; }
11 }
取xml文件转成List<T>对象的两种方法

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

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

取xml文件转成List<T>对象的两种方法
 1         private static IList<Product> products=new List<Product>();
2 static LoadXml()
3 {
4 try
5 {
6 using (TextReader reader = new StreamReader("data.xml"))
7 {
8 var serializer = new XmlSerializer(typeof(Products));
9 var items = (Products)serializer.Deserialize(reader);
10 if (items != null)
11 {
12 products = items.Items;
13 }
14 }
15 }
16 catch (Exception ex)
17 {
18 Console.WriteLine("出错了," + ex.Message);
19 }
20 }
取xml文件转成List<T>对象的两种方法

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

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

二、利用linq进行转换

这个会linq的估计都知道吧,具体不多说了,代码如下:

取xml文件转成List<T>对象的两种方法
 1         private static IList<Product> products=new List<Product>();
2 static LoadXml()
3 {
4 try
5 {
6 XDocument doc = XDocument.Load("data.xml");
7 products =
8 doc.Descendants("product")
9 .Select(
10 x =>
11 new Product
12 {
13 Name = x.Attribute("name").ToString(),
14 Price = (decimal)x.Attribute("price"),
15 SupplierId = (long)x.Attribute("supplierId")
16 })
17 .ToList();
18 }
19 catch (Exception ex)
20 {
21 Console.WriteLine("出错了," + ex.Message);
22 }
23 }
取xml文件转成List<T>对象的两种方法

以上就是这么多,其实很简单,就是记录下来,做一个笔记,如果各位看官有更好的实现方法,可以分享一下,大家互相学习学习!

 
 

取xml文件转成List<T>对象的两种方法的更多相关文章

  1. 读取xml文件转成List&lt&semi;T&gt&semi;对象的两种方法(附源码)

    读取xml文件转成List<T>对象的两种方法(附源码) 读取xml文件,是项目中经常要用到的,所以就总结一下,最近项目中用到的读取xml文件并且转成List<T>对象的方法, ...

  2. &lpar;转&rpar; 读取xml文件转成List&lt&semi;T&gt&semi;对象的两种方法

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

  3. Intent传递对象的两种方法&lpar;Serializable&comma;Parcelable&rpar; (转)

    今天讲一下Android中Intent中如何传递对象,就我目前所知道的有两种方法,一种是Bundle.putSerializable(Key,Object);另一种是Bundle.putParcela ...

  4. Android中Intent传递对象的两种方法&lpar;Serializable&comma;Parcelable&rpar;

    今天要给大家讲一下Android中 Intent中如何传递对象,就我目前所知道的有两种方法,一种是Bundle.putSerializable(Key,Object);另一种是 Bundle.putP ...

  5. &lbrack;转&rsqb;Android中Intent传递对象的两种方法&lpar;Serializable&comma;Parcelable&rpar;

    http://blog.csdn.net/xyz_lmn/article/details/5908355 今天要给大家讲一下Android中Intent中如何传递对象,就我目前所知道的有两种方法,一种 ...

  6. WCF生成客户端代理对象的两种方法的解释

    最近在封装WCF,有一些很好的实践就记录下来,大家可以放心使用,所有代码都已经调试过.如果有高手可以大家探讨一下. 在WCF中有两种不同的方法可以用于创建客户端服务对象,他们分别为: 1. 代理构造法 ...

  7. Android高手进阶教程&lpar;十七&rpar;之---Android中Intent传递对象的两种方法&lpar;Serializable&comma;Parcelable&rpar;&excl;

    [转][原文] 大家好,好久不见,今天要给大家讲一下Android中Intent中如何传递对象,就我目前所知道的有两种方法,一种是Bundle.putSerializable(Key,Object); ...

  8. 在Delphi中使用C&plus;&plus;对象(两种方法,但都要改造C&plus;&plus;提供的DLL)

    Delphi是市场上最好的RAD工具,但是现在C++占据着主导地位,有时针对一个问题很难找到Delphi或Pascal的解决方案.可是却可能找到了一个相关的C++类.本文描述几种在Delphi代码中使 ...

  9. 在userMapper&period;xml文件中模糊查询的常用的3种方法

    在userMapper.xml文件中新建映射sql的标签 <!-- ******************** 模糊查询的常用的3种方式:********************* --> ...

随机推荐

  1. yarn关于app max attempt深度解析,针对长服务appmaster平滑重启

    在YARN上开发长服务,需要注意fault-tolerance,本篇文章对appmaster的平滑重启的一个参数做了解析,如何设置可以有助于达到appmaster平滑重启. 在yarn-site.xm ...

  2. MlLib--逻辑回归笔记

    批量梯度下降的逻辑回归可以参考这篇文章:http://blog.csdn.net/pakko/article/details/37878837 看了一些Scala语法后,打算看看MlLib的机器学习算 ...

  3. 微信https请求工具类

    工作中用到的微信https请求工具类. package com.gxgrh.wechat.tools; import com.gxgrh.wechat.wechatapi.service.System ...

  4. ExtJs文件上传&lpar;Ext&period;ux&period;form&period;FileUploadField&rpar;

    Ext.ux.form.FileUploadField = Ext.extend(Ext.form.TextField, { /**  * @cfg {String} buttonText The b ...

  5. 理解assign&comma;copy&comma;retain变strong

    举个例子: NSString *houseOfMM = [[NSString alloc] initWithString:'装梵几的三室两厅']; 上面一段代码会执行以下两个动作:  1 在堆上分配一 ...

  6. Delphi中控制Excel&lpar;转载&rpar;

    用Delphi从数据库中取得资料,然后导出到Excel中做成报表是个不错的选择,因为Excel强大的报表功能那可是没话说前提Delphi中要 uses comobj;var Excel:Variant ...

  7. &period;NET Web开发总结&lpar;五&rpar;

    7 常用服务器控件 7.1 服务器控件概述 · 服务器控件是指在服务器上执行程序的代码的组件 通常这些服务器控件会提供    给用户一定的界面,  以便用户与服务器之间快速的交互 7.2 HTML 服 ...

  8. Gym - 101755G Underpalindromity &lpar;树状数组)

    Let us call underpalindromity of array b of length k the minimal number of times one need to increme ...

  9. BZOJ1828&lbrack;USACO 2010 Mar Gold 2&period;Barn Allocation&rsqb;——贪心&plus;线段树

    题目描述 输入 第1行:两个用空格隔开的整数:N和M * 第2行到N+1行:第i+1行表示一个整数C_i * 第N+2到N+M+1行: 第i+N+1行表示2个整数 A_i和B_i 输出 * 第一行: ...

  10. UBuntu sudo 命令 :xxx is not in the sudoers file&period; This incident will be reported&period;

    [1]分析问题 提示内容翻译成中文即:用户XXX(一般是新添加的用户名称)没有权限使用sudo. 解决方法修改新用户的权限,具体操作即修改一下/etc/sudoers文件. [2]切换至root用户模 ...