收藏 分享(赏)

XML序列化与反序列化 - 整理文档.doc

上传人:wspkg9802 文档编号:6854773 上传时间:2019-04-24 格式:DOC 页数:11 大小:61KB
下载 相关 举报
XML序列化与反序列化 - 整理文档.doc_第1页
第1页 / 共11页
XML序列化与反序列化 - 整理文档.doc_第2页
第2页 / 共11页
XML序列化与反序列化 - 整理文档.doc_第3页
第3页 / 共11页
XML序列化与反序列化 - 整理文档.doc_第4页
第4页 / 共11页
XML序列化与反序列化 - 整理文档.doc_第5页
第5页 / 共11页
点击查看更多>>
资源描述

1、XML 序列化与反序列化 整理文档 XML 序列化与反序列化/ OBJECT - XMLpublic static void SaveXml(string filePath, object obj) SaveXml(filePath, obj, obj.GetType(); public static void SaveXml(string filePath, object obj, System.Type type)using (System.IO.StreamWriter writer = new System.IO.StreamWriter(filePath)System.Xml.Ser

2、ialization.XmlSerializer xs = new System.Xml.Serialization.XmlSerializer(type);xs.Serialize(writer, obj);writer.Close();/ XML - OBJECTpublic static object LoadXml(string filePath, System.Type type)if (!System.IO.File.Exists(filePath)return null;using (System.IO.StreamReader reader = new System.IO.St

3、reamReader(filePath)System.Xml.Serialization.XmlSerializer xs = new System.Xml.Serialization.XmlSerializer(type);object obj = xs.Deserialize(reader);reader.Close();return obj;相关的常用 Attribute(命名空间 System.Xml.Serialization )XmlRootAttribute(“PurchaseOrder“, Namespace=“http:/ IsNullable=false) / 指定根Xml

4、IgnoreAttribute / 跳过不序列化XmlArrayAttribute(“Items“) public OrderedItem OrderedItems; / 层次序列化: XmlElementAttribute(ElementName=“Link“, IsNullable=false) public Link Links; / 平面序列化: .XmlAttribute(“Cat“) public string Cat; / 表现为属性XmlElementAttribute(IsNullable=false) / 表现为节点相关的全部 Attribute(命名空间 System.X

5、ml.Serialization )XmlAttributes 表示一个特性对象的集合,这些对象控制 XmlSerializer 如何序列化和反序列化对象。 XmlArrayAttribute 指定 XmlSerializer 应将特定的类成员序列化为 XML 元素数组。 XmlArrayItemAttribute 指定 XmlSerializer 可以放置在序列化数组中的派生类型。 XmlArrayItemAttributes 表示 XmlArrayItemAttribute 对象的集合。 XmlAttributeAttribute 指定 XmlSerializer 应将类成员作为 XML

6、特性序列化。 XmlChoiceIdentifierAttribute 指定可以通过使用枚举来进一步消除成员的歧义。 XmlElementAttribute 在 XmlSerializer 序列化或反序列化包含对象时,指示公共字段或属性表示 XML 元素。 XmlElementAttributes 表示 XmlElementAttribute 的集合,XmlSerializer 将其用于它重写序列化类的默认方式。 XmlEnumAttribute 控制 XmlSerializer 如何序列化枚举成员。 XmlIgnoreAttribute 指示 XmlSerializer 的 Serializ

7、e 方法不序列化公共字段或公共读/写属性值。 XmlIncludeAttribute 允许 XmlSerializer 在它序列化或反序列化对象时识别类型。 XmlRootAttribute 控制视为 XML 根元素的属性目标的 XML 序列化。 XmlTextAttribute 当序列化或反序列化包含类时,向 XmlSerializer 指示应将此成员作为 XML 文本处理。 XmlTypeAttribute 控制当属性目标由 XmlSerializer 序列化时生成的 XML 架构。 XmlAnyAttributeAttribute 指定成员(返回 XmlAttribute 对象的数组的字

8、段)可以包含任何 XML 属性。 XmlAnyElementAttribute 指定成员(返回 XmlElement 或 XmlNode 对象的数组的字段)可以包含对象,该对象表示在序列化或反序列化的对象中没有相应成员的所有 XML 元素。 XmlAnyElementAttributes 表示 XmlAnyElementAttribute 对象的集合。 XmlAttributeEventArgs 为 UnknownAttribute 事件提供数据。 XmlAttributeOverrides 允许您在使用 XmlSerializer 序列化或反序列化对象时重写属性、字段和类特性。 XmlEle

9、mentEventArgs 为 UnknownElement 事件提供数据。 XmlNamespaceDeclarationsAttribute 指定目标属性、参数、返回值或类成员包含与 XML 文档中所用命名空间关联的前缀。 XmlNodeEventArgs 为 UnknownNode 事件提供数据。 XmlSerializer 将对象序列化到 XML 文档中和从 XML 文档中反序列化对象。XmlSerializer 使您得以控制如何将对象编码到 XML 中。 XmlSerializerNamespaces 包含 XmlSerializer 用于在 XML 文档实例中生成限定名的 XML

10、命名空间和前缀。 XmlTypeMapping 包含从一种类型到另一种类型的映射。 xml 序列化答疑(1)需序列化的字段必须是公共的(public)(2)需要序列化的类都必须有一个无参的构造函数(3)枚举变量可序列化为字符串,无需用XmlInclude(4)导出非基本类型对象,都必须用XmlInclude 事先声明。该规则递归作用到子元素如导出 ArrayList 对象,若其成员是自定义的,需预包含处理:using System.Xml.Serialization;XmlInclude(typeof(自定义类 )(5)Attribute 中的 IsNullable 参数若等于 false,表

11、示若元素为 null 则不显示该元素。也就是说:针对值类型(如结构体)该功能是实效的若数组包含了 100 个空间,填充了 10 个类对象,则序列化后只显示 10 个节点若数组包含了 100 个空间,填充了 10 个结构体对象,则序列化后会显示 100 个节点(6)真正无法 XML 序列化的情况某些类就是无法 XML 序列化的(即使使用了 XmlInclude)IDictionary(如 HashTable)System.Drawing.ColorSystem.Drawing.FontSecurityAttribute 声明父类对象赋予子类对象值的情况对象间循环引用(7)对于无法 XML 序列化

12、的对象,可考虑使用自定义 xml 序列化(实现 IXmlSerializable 接口)实现 IDictionary 的类,可考虑(1)用其它集合类替代;(2)用类封装之,并提供 Add 和 this函数某些类型需要先经过转换,然后才能序列化为 XML。如 XML 序列化 System.Drawing.Color,可先用 ToArgb()将其转换为整数 过于复杂的对象用 xml 序列化不便的话,可考虑用二进制序列化 -高级议题-序列化中异常的扑捉使用 Exception.Message 只会得到简单的信息“行* 错误“可以使用 Exception.InnerException.Message

13、得到更详尽的信息可使用事件代理来处理解析不了的 XML 节点XmlSerializer serializer = new XmlSerializer(typeof(PurchaseOrder);serializer.UnknownNode+= new XmlNodeEventHandler(serializer_UnknownNode);serializer.UnknownAttribute+= new XmlAttributeEventHandler(serializer_UnknownAttribute);protected void serializer_UnknownNode(obje

14、ct sender, XmlNodeEventArgs e)Console.WriteLine(“Unknown Node:“ + e.Name + “t“ + e.Text);protected void serializer_UnknownAttribute(object sender, XmlAttributeEventArgs e)System.Xml.XmlAttribute attr = e.Attr;Console.WriteLine(“Unknown attribute “ + attr.Name + “=“ + attr.Value + “);集合类(IEnumerable,

15、 ICollection)必须满足下列规则才可 XML 序列化:- 不得实现 IDictionary。- 必须有一个 Add 方法,该方法不是由该接口定义的,因为它通常是为该集合将要容纳的专用类型而创建的- 必须有一个索引器, 且参数为 System.Int32 (C# int)- 在 Add、Count 和索引器中不能有任何安全特性(SecurityAttribute)可序列化集合类例程:public class PublisherCollection : CollectionBasepublic int Add(Publisher value)return base.InnerList.A

16、dd(value);public Publisher thisint idxget return (Publisher) base.InnerListidx; set base.InnerListidx = value; 某些类是以程序集的形式提供的,无法修改其源码。可用 XmlAttributeOverrides 设置其序列化特性XML 目标100Product Thing10101How to Use Your New Product Thing10123456789源类(无法修改)public class Inventoryprivate Product stuff;public Inv

17、entory() public Product InventoryItems get return stuff; set stuff=value;附加 XmlAttributeOverrides 后即可序列化XmlAttributes attrs = new XmlAttributes();attrs.XmlElements.Add(new XmlElementAttribute(“Book“, typeof(BookProduct);attrs.XmlElements.Add(new XmlElementAttribute(“Product“, typeof(Product);/add to

18、 the Attributes collectionXmlAttributeOverrides attrOver = new XmlAttributeOverrides();attrOver.Add(typeof(Inventory), “InventoryItems“, attrs);/deserialize and load data into the listbox from deserialized objectFileStream f=new FileStream(“inventory.xml“,FileMode.Open);XmlSerializer newSr=new XmlSe

19、rializer(typeof(Inventory), attrOver);Inventory newInv = (Inventory)newSr.Deserialize(f);-最简单的示例-类设计public class MyClass public MyObject MyObjectProperty;public class MyObject public string ObjectName;序列化的 XML:My String-示例: 序列化数组,并限制数组元素类型-类设计public class ThingsXmlElement(DataType = typeof(string),

20、XmlElement(DataType = typeof(int)public object StringsAndInts;生成的 XML 可能为:Hello999World-示例: 序列化数组-类设计using System.Xml.Serialization;XmlRootAttribute(“LinkLibrary“, IsNullable = false, Namespace=“http:/ class LinkLibXmlElementAttribute(ElementName=“Link“, IsNullable=false)public Link Links;public Lin

21、kLib()Links = new Link50;Links0 = new Link(“aa“, “aa“, “aa“);Links1 = new Link(“bb“, “aa“, “aa“);Links2 = new Link(“cc“, “aa“, “aa“);Links3 = new Link(“aa“, “aa“, “aa“);Links4 = new Link(“aa“, “aa“, “aa“);Links5 = new Link(“aa“, “aa“, “aa“);Links6 = new Link(“aa“, “aa“, “aa“);Links7 = new Link(“aa“,

22、 “aa“, “aa“);Links8 = new Link(“aa“, “aa“, “aa“);Links9 = new Link(“aa“, “aa“, “aa“);public class LinkXmlAttribute(“Cat“) public string Cat;XmlAttribute(“Url“) public string Url;XmlAttribute(“Desc“)public string Desc;public Link()public Link(string cat, string url, string desc)Cat = cat;Url = url;De

23、sc = desc;目标 XML 文件若使用XmlArrayAttribute(“Links“) public Link Links;则序列化后的 xml 文件会多出一层:-示例:使用自定义序列化序列化 Dictionary 对象-XML 目标FactTableDef1owner1sourceTable1类源码using System;using System.Collections.Generic;using System.Text;using System.Runtime.Serialization;using System.Xml;using System.Xml.Serializati

24、on;namespace WZDM.OLAPSystem.Serializable()XmlInclude(typeof(FactTableDef)public class FactTableDef : System.Xml.Serialization.IXmlSerializablepublic string Name; / 名称public string Owner; / 事实表属主public string SourceTable; / 源表public Dictionary ColumnMeasureMaps; / 字段和量度对应关系public Dictionary ColumnDi

25、mensionMaps; / 字段和维度对应关系public FactTableDef() .public void WriteXml(System.Xml.XmlWriter writer)writer.WriteElementString(“Name“, this.Name);writer.WriteElementString(“Owner“, this.Owner);writer.WriteElementString(“SourceTable“, this.SourceTable);/ ColumnMeasureMapswriter.WriteStartElement(“ColumnMe

26、asureMaps“);foreach (string key in this.ColumnMeasureMaps.Keys)writer.WriteStartElement(“Map“);writer.WriteAttributeString(“Column“, key);writer.WriteAttributeString(“Measure“, ColumnMeasureMapskey);writer.WriteEndElement();writer.WriteEndElement();/ ColumnDimensionMapswriter.WriteStartElement(“Colu

27、mnDimensionMaps“);foreach (string key in this.ColumnDimensionMaps.Keys)writer.WriteStartElement(“Map“);writer.WriteAttributeString(“Column“, key);writer.WriteAttributeString(“Dimension“, ColumnDimensionMapskey);writer.WriteEndElement();writer.WriteEndElement();public void ReadXml(System.Xml.XmlReade

28、r reader)reader.Read();this.Name = reader.ReadElementString(“Name“);this.Owner = reader.ReadElementString(“Owner“);this.SourceTable = reader.ReadElementString(“SourceTable“);/ ColumnMeasureMapsColumnMeasureMaps = new Dictionary();reader.ReadStartElement(“ColumnMeasureMaps“);reader.ReadToDescendant(“

29、Map“);do string key = reader.GetAttribute(“Column“);string item = reader.GetAttribute(“Measure“);ColumnMeasureMaps.Add(key, item);while (reader.ReadToNextSibling(“Map“);reader.ReadEndElement();/ ColumnDimensionMapsColumnDimensionMaps = new Dictionary();reader.ReadStartElement(“ColumnDimensionMaps“);reader.ReadToDescendant(“Map“);dostring key = reader.GetAttribute(“Column“);string item = reader.GetAttribute(“Dimension“);ColumnDimensionMaps.Add(key, item); while (reader.ReadToNextSibling(“Map“);reader.ReadEndElement();posted 2008-08-12 18:30 kevin-wang 阅读(52) 评论(0) 编辑 收藏 网摘 所属分类: .Net序列化

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报