|
可以使用XmlSerializer直接序列化和反序列化xml
反序列化如以下代码- private T? XmlDeseriallize<T>(string filePath)
- {
- XmlSerializer serializer = new XmlSerializer(typeof(T));
- using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
- {
- var xmlReader = System.Xml.XmlReader.Create(fileStream);
- var deserializedObject = (T?)serializer.Deserialize(xmlReader);
- return deserializedObject;
- }
- }
复制代码 调用方法- var udidEntity = XmlDeseriallize<udid>(filePath)
复制代码 其中,xml文件内容示例:C# 类型示例:- //为从XML反序列化来而做准备
- public class udid
- {
- public header header { get; set; } = new();
- [XmlArrayItem("device")]//序列化反序列化时,当DeviceInfoDto对应的xml中元素的名字不是DeviceInfoDto而是device时,用该特性指定类型DeviceInfoDto对应的在xml中的元素的名字device。如果不这么做,则需要变能,改以下代码中List<DeviceInfoDto>为List<device>其中device为一个继承自DeviceInfoDto类型的子类
- public List<DeviceInfoDto> devices { get; set; } = new();
- }
- public class header
- {
- [XmlAttribute("frequency")]
- public string Frequency { get; set; } = string.Empty;
- [XmlAttribute("id")]
- public string Id { get; set; } = string.Empty;
- [XmlAttribute("type")]
- public string Type { get; set; } = string.Empty;
- public int downloadFilePart { get; set; }
- public int downloadFileTotalParts { get; set; }
- public int numberRkeyecordXML { get; set; }
- public int numberRecordsDatabase { get; set; }
- #region 当直接使用一个类型为Datetime属性名为creationDate来在反序列化xml文件中的日期时间类型的接收者时,反序列化会报错:【字符串“2020-07-31 09:29:16”不是有效的AllXsd值】。于是采入引入一个中间属性stringCreationDate(类型为string)和存储其值的字段_creationDate(类型为DateTime)的方式,运行过程1.当反序列化时从xml文件读取元素名为creationDate的元素值并通过stringCreationDate的set访问器将其值在转值为DateTime类型后存放于字段_creationDate中 2.当C#代码中其他地方要访问这个值时,就从creationDate属性的get访问器传递出_creationDate字段的值。缺点:需引入不必要的属性和字段,而且属性名还必须是public的,这会让外部访问者对这个中间属性感到疑惑。
- private DateTime _creationDate;
- [XmlElement(ElementName = "creationDate")]
- public string stringCreationDate { get => _creationDate.ToString("yyyy-MM-dd HH:mm:ss"); set => _creationDate = Convert.ToDateTime(value); }
- [XmlIgnore]
- public DateTime creationDate { get => _creationDate; }
- #endregion
- }
- public class DeviceInfoDto
- {
- [XmlElement("cpmctymc")]//用来在做xml反序列化时,指定本属性对应到xml文件中的标签的名字。(注意还有一个是XmlAttribute它是指对应到xml标签的属性名字)
- public string CPMCTYMC { get; set; }
- [XmlElement("spmc")]
- public string SPMC { get; set; }
- [XmlElement("ggxh")]
- public string GGXH { get; set; }
- [XmlElement("cpms")]
- public string CPMS { get; set; }
- [XmlElement("tyshxydm")]
- public string TYSHXYDM { get; set; }
- [XmlElement("flbm")]
- public string CategoryCode { get; set; }
- [XmlElement("deviceRecordKey")]
- public string deviceRecordKey { get; set; }
- [XmlElement("versionTime")]
- public DateTime versionTime { get; set; }
- [XmlElement("zxxsdycpbs")]
- public string DI { get; set; }
- [XmlElement("cpbsbmtxmc")]
- public string DeviceCodeType { get; set; }
- [XmlElement("ylqxzcrbarmc")]
- public string Manufacturer { get; set; }
- [XmlElement("ylqxzcrbarywmc")]
- public string EnManufacturer { get; set; }
- [XmlElement("zczbhhzbapzbh")]
- public string RegistrationCertificateNo { get; set; }
- [XmlElement("versionStauts")]
- public string versionStauts { get; set; }
- }
复制代码 注意其中几个关键点
1. 读取xml文件时,以独占方式,这样可以避免文件被别的程序打开时读取报错的问题。
using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) {}
2. 在序列化反序列化时,当类型DeviceInfoDto对应的xml中元素的名字不是DeviceInfoDto而是device时,有两种解决方法:
方法一:
用该特性[XmlArrayItem("device")]指定类型DeviceInfoDto对应的在xml中的元素的名字device。- [XmlArrayItem("device")]
- public List<DeviceInfoDto> devices { get; set; } = new();
复制代码 方法二:
需要变通:改以下代码中List为List其中device为一个继承自DeviceInfoDto类型的子类
public List devices { get; set; } = new();- public class device:DeviceInfoDto
- {
- }
复制代码 3. 反序列化时对应C#类型DateTime时的报错处理
当直接使用一个类型为Datetime属性名为creationDate来在反序列化xml文件中的日期时间类型的接收者时,反序列化会报错:【字符串“2020-07-31 09:29:16”不是有效的AllXsd值】。于是采入引入一个中间属性stringCreationDate(类型为string)和存储其值的字段_creationDate(类型为DateTime)的方式,运行过程1.当反序列化时从xml文件读取元素名为creationDate的元素值并通过stringCreationDate的set访问器将其值在转值为DateTime类型后存放于字段_creationDate中 2.当C#代码中其他地方要访问这个值时,就从creationDate属性的get访问器传递出_creationDate字段的值。缺点:需引入不必要的属性和字段,而且属性名还必须是public的,这会让外部访问者对这个中间属性感到疑惑。- private DateTime _creationDate;
- [XmlElement(ElementName = "creationDate")]
- public string stringCreationDate { get => _creationDate.ToString("yyyy-MM-dd HH:mm:ss"); set => _creationDate = Convert.ToDateTime(value); }
- [XmlIgnore]
- public DateTime creationDate { get => _creationDate; }
复制代码 4. 序列化反序列化时,XmlSerializer可识别的常用的C#特性标签 Attribute
a. [XmlRoot("udid")]
用于C#类名上,用于指明根类型对应的xml中的元素名
b. [XmlElement("creationDate")]
用于C#属性或字段上,用于指明属性对应的xml元素名或者叫标签名为 creationDate
c. [XmlAttribute("frequency")]
用于C#属性或字段上,用于指明属性或字段对应的XML元素的属性名为 frequency
d. [XmlIgnore]
用于C#属性或字段上,用来标记该字段在序列化反序列化XML文档时是要忽略的C#属性或字段
e. [XmlArrayItem("device")]
用于C# List集合类型的属性或字段上,用来标记集合中的元素类型T在XML文档中对应的元素名称
更多参考:
https://www.cnblogs.com/guogangj/p/7489218.html
来源:https://www.cnblogs.com/hrx521/p/18215279
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
|