当前位置: 首页 > news >正文

抚州购物网站开发设计上海平台网站建设哪家好

抚州购物网站开发设计,上海平台网站建设哪家好,google收录网站,我想做个卷帘门网站怎么做一、XML 序列化 ​ 序列化#xff1a;把对象转化为可传输的字节序列过程称为序列化#xff0c;就是把想要存储的内容转换为字节序列用于存储或传递 ​ 反序列化#xff1a;把字节序列还原为对象的过程称为反序列化#xff0c;就是把存储或收到的字节序列信息解析读取出来…一、XML 序列化 ​ 序列化把对象转化为可传输的字节序列过程称为序列化就是把想要存储的内容转换为字节序列用于存储或传递 ​ 反序列化把字节序列还原为对象的过程称为反序列化就是把存储或收到的字节序列信息解析读取出来使用 一XML 序列化 1.准备数据结构 public class Lesson1Test {public int testPublic 10;private int testPrivate 11;protected int testProtected 12;internal int testInternal 13;public string testPUblicStr 123;public int testPro { get; set; }public Lesson1Test2 testClass new Lesson1Test2();public int[] arrayInt new int[3] { 5, 6, 7 };public Listint listInt new Listint() { 1, 2, 3, 4 };public ListLesson1Test2 listItem new ListLesson1Test2() { new Lesson1Test2(), new Lesson1Test2() };// 不支持字典// public Dictionaryint, string testDic new Dictionaryint, string() { { 1, 123 } }; }public class Lesson1Test2 {public int test1 1;public float test2 1.1f;public bool test3 true; }Lesson1Test lt new Lesson1Test();2.进行序列化 XmlSerializer用于序列化对象为 xml 的关键类 StreamWriter用于存储文件 using用于方便流对象释放和销毁 using System.Xml.Serialization;// 第一步确定存储路径 string path Application.persistentDataPath /Lesson1Test.xml;// 第二步结合 using知识点 和 StreamWriter这个流对象 来写入文件 // 括号内的代码写入一个文件流 如果有该文件 直接打开并修改 如果没有该文件 直接新建一个文件 // using 的新用法 括号当中包裹的声明的对象 会在 大括号语句块结束后 自动释放掉 // 当语句块结束 会自动帮助我们调用 对象的 Dispose这个方法 让其进行销毁 // using一般都是配合 内存占用比较大 或者 有读写操作时 进行使用的 using (StreamWriter stream new StreamWriter(path)) {// 第三步进行xml文件序列化XmlSerializer s new XmlSerializer(typeof(Lesson1Test));// 这句代码的含义 就是通过序列化对象 对我们类对象进行翻译 将其翻译成我们的xml文件 写入到对应的文件中// 第一个参数文件流对象// 第二个参数想要备翻译 的对象// 注意翻译机器的类型 一定要和传入的对象是一致的 不然会报错s.Serialize(stream, lt); }3.运行测试 运行后可以看到如下的文件内容在 path 文件夹中查看 可以发现只能保存 public 类型的数据 ?xml version1.0 encodingutf-8? Lesson1Test xmlns:xsdhttp://www.w3.org/2001/XMLSchema xmlns:xsihttp://www.w3.org/2001/XMLSchema-instancetestPublic10/testPublictestPUblicStr123/testPUblicStrtestClasstest11/test1test21.1/test2test3true/test3/testClassarrayIntint5/intint6/intint7/int/arrayIntlistIntint1/intint2/intint3/intint4/int/listIntlistItemLesson1Test2test11/test1test21.1/test2test3true/test3/Lesson1Test2Lesson1Test2test11/test1test21.1/test2test3true/test3/Lesson1Test2/listItemtestPro0/testPro /Lesson1Test4.自定义节点名或设置属性 public class Lesson1Test {[XmlElement(testPublic123123)] // 将该变量对应的结点名字改为 testPublic123123public int testPublic 10;private int testPrivate 11;protected int testProtected 12;internal int testInternal 13;public string testPUblicStr 123;public int testPro { get; set; }public Lesson1Test2 testClass new Lesson1Test2();public int[] arrayInt new int[3] { 5, 6, 7 };[XmlArray(IntList)] // 改变数组对应的结点名字[XmlArrayItem(Int32)] // 改变数组成员对应的结点名字public Listint listInt new Listint() { 1, 2, 3, 4 };public ListLesson1Test2 listItem new ListLesson1Test2() { new Lesson1Test2(), new Lesson1Test2() };// 不支持字典// public Dictionaryint, string testDic new Dictionaryint, string() { { 1, 123 } }; }public class Lesson1Test2 {[XmlAttribute(Test1)] // 将该变量存储为XML属性并改名为 Test1public int test1 1;[XmlAttribute] // 将该变量存储为XML属性public float test2 1.1f;[XmlAttribute] public bool test3 true; }?xml version1.0 encodingutf-8? Lesson1Test xmlns:xsdhttp://www.w3.org/2001/XMLSchema xmlns:xsihttp://www.w3.org/2001/XMLSchema-instancetestPublic10/testPublictestPUblicStr123/testPUblicStrtestClass Test11 test21.1 test3true /arrayIntint5/intint6/intint7/int/arrayIntIntListInt321/Int32Int322/Int32Int323/Int32Int324/Int32/IntListlistItemLesson1Test2 Test11 test21.1 test3true /Lesson1Test2 Test11 test21.1 test3true //listItemtestPro0/testPro /Lesson1Test​5. 总结 序列化流程 有一个想要保存的类对象使用 XmlSerializer 序列化该对象通过 StreamWriter 配合 using 将数据存储 写入文件注意 只能序列化公共成员不支持字典序列化可以通过特性修改节点信息或者设置属性信息Stream 相关要配合 using 使用 二、XML 反序列化 一判断文件是否存在 using System.IO;string path Application.persistentDataPath /Lesson1Test.xml; if(File.Exists(path)) { ... }二反序列化 ​ 关键知识 using 和 StreamReaderXmlSerializer 的 Deserialize 反序列化方法 using System.Xml.Serialization;// 读取文件 using (StreamReader reader new StreamReader(path)) {// 产生了一个 序列化反序列化的翻译机器XmlSerializer s new XmlSerializer(typeof(Lesson1Test));Lesson1Test lt s.Deserialize(reader) as Lesson1Test; }​ 运行后调试可以发现 List 类型的内容被重复添加原因是变量 lt 初始化后 List 中有默认值而反序列化时Deserialize 方法会往 List 中用 Add 方法添加值而不是覆盖原有的值。 ​ 总结 判断文件是否存在 File.Exists() 文件流获取 StreamReader reader new StreamReader(path) 根据文件流 XmlSerializer 通过 Deserialize 反序列化出对象 ​ 注意List 对象如果有默认值反序列化时不会清空会往后面添加 三、IXmlSerializable 接口 ​ C# 的 XmlSerializer 提供了可拓展内容可以让一些不能被序列化和反序列化的特殊类能被处理 ​ 让特殊类继承 IXmlSerializable 接口实现其中的方法即可 一回顾序列化与反序列化 using System.IO; using System.Xml; using System.Xml.Serialization;public class TestLesson3 : IXmlSerializable {public int test1;public string test2; }TestLesson3 t new TestLesson3(); t.test2 123; string path Application.persistentDataPath /TestLesson3.xml; // 序列化 using (StreamWriter writer new StreamWriter(path)) {// 序列化翻译机器XmlSerializer s new XmlSerializer(typeof(TestLesson3));// 在序列化时 如果对象中的引用成员 为空 那么xml里面是看不到该字段的s.Serialize(writer, t); } // 反序列化 using (StreamReader reader new StreamReader(path)) {// 序列化翻译机器XmlSerializer s new XmlSerializer(typeof(TestLesson3));TestLesson3 t2 s.Deserialize(reader) as TestLesson3; }?xml version1.0 encodingutf-8? TestLesson3 xmlns:xsdhttp://www.w3.org/2001/XMLSchema xmlns:xsihttp://www.w3.org/2001/XMLSchema-instancetest10/test1test2123/test2 /TestLesson3二继承 IXmlSerializable 接口 1.继承接口并实现接口函数 public class TestLesson3 : IXmlSerializable {public int test1;public string test2;// 返回结构返回 null 即可不用过多了解public XmlSchema GetSchema(){return null;}// 反序列化时 会自动调用的方法public void ReadXml(XmlReader reader) { }// 序列化时 会自动调用的方法public void WriteXml(XmlWriter writer) { } }2.WriteXml public void WriteXml(XmlWriter writer) {// 在里面可以自定义序列化 的规则// 如果要自定义 序列化的规则 一定会用到 XmlWriter中的一些方法 来进行序列化// 1.写属性writer.WriteAttributeString(test1, this.test1.ToString());writer.WriteAttributeString(test2, this.test2);// 2.写节点writer.WriteElementString(test1, this.test1.ToString());writer.WriteElementString(test2, this.test2);// 3.写包裹节点XmlSerializer s new XmlSerializer(typeof(int));writer.WriteStartElement(test1); // 写 test1s.Serialize(writer, test1); // 用序列化翻译机器写 test1 的内容writer.WriteEndElement(); // 写 /test1XmlSerializer s2 new XmlSerializer(typeof(string));writer.WriteStartElement(test2); // 写 test2s.Serialize(writer, test2); // 用序列化翻译机器写 test2 的内容writer.WriteEndElement(); // 写 /test2 }3.ReadXml public void ReadXml(XmlReader reader) {// 在里面可以自定义反序列化 的规则// 1.读属性this.test1 int.Parse(reader[test1]);this.test2 reader[test2];// 2.读节点// 方式一reader.Read(); // 这时是读到的test1节点 test1reader.Read(); // 这时是读到的test1节点包裹的内容 0this.test1 int.Parse(reader.Value); // 得到当前内容的值reader.Read(); // 这时读到的是尾部包裹节点 /test1reader.Read(); // 这时是读到的test2节点 test2reader.Read(); // 这时是读到的test2节点包裹的内容 123this.test2 reader.Value;// 方式二while (reader.Read()) {if (reader.NodeType XmlNodeType.Element) {switch (reader.Name) {case test1:reader.Read();this.test1 int.Parse(reader.Value);break;case test2:reader.Read();this.test2 reader.Value;break;}}}// 3.读包裹元素节点XmlSerializer s new XmlSerializer(typeof(int));XmlSerializer s2 new XmlSerializer(typeof(string));reader.Read(); // 跳过根节点reader.ReadStartElement(test1); // 读 test1test1 (int)s.Deserialize(reader); // 用反序列化翻译机器读 test1 的内容reader.ReadEndElement(); // 读 /test1reader.ReadStartElement(test2); // 读 test2test2 s2.Deserialize(reader).ToString(); // 用反序列化翻译机器读 test2 的内容reader.ReadEndElement(); // 读 /test2 }四、Dictionary 支持序列化与反序列化 我们没办法修改 C# 自带的类 那我们可以重写一个类继承 Dictionary然后让这个类继承序列化拓展接口 IXmlSerializable 实现里面的序列化和反序列化方法即可 public class SerizlizedDictionaryTKey, TValue : DictionaryTKey, TValue, IXmlSerializable {public XmlSchema GetSchema() {return null;}// 自定义字典的 反序列化 规则public void ReadXml(XmlReader reader) {XmlSerializer keySer new XmlSerializer(typeof(TKey));XmlSerializer valueSer new XmlSerializer(typeof(TValue));// 要跳过根节点reader.Read();// 判断 当前不是元素节点 结束 就进行 反序列化while (reader.NodeType ! XmlNodeType.EndElement) {// 反序列化键TKey key (TKey)keySer.Deserialize(reader);// 反序列化值TValue value (TValue)valueSer.Deserialize(reader);// 存储到字典中this.Add(key, value);}}// 自定义 字典的 序列化 规则public void WriteXml(XmlWriter writer) {XmlSerializer keySer new XmlSerializer(typeof(TKey));XmlSerializer valueSer new XmlSerializer(typeof(TValue));foreach (KeyValuePairTKey, TValue kv in this) {// 键值对 的序列化keySer.Serialize(writer, kv.Key);valueSer.Serialize(writer, kv.Value);}} }一序列化测试 public class TestLesson4 {public int test1;public SerizlizerDictionaryint, string dic; }public class Lesson4 : MonoBehaviour {// Start is called before the first frame updatevoid Start() {TestLesson4 tl4 new TestLesson4();tl4.dic new SerizlizerDictionaryint, string();tl4.dic.Add(1, 123);tl4.dic.Add(2, 234);tl4.dic.Add(3, 345);string path Application.persistentDataPath /TestLesson4.xml;using (StreamWriter writer new StreamWriter(path)) {XmlSerializer s new XmlSerializer(typeof(TestLesson4));s.Serialize(writer, tl4);}} }?xml version1.0 encodingutf-8? TestLesson4 xmlns:xsdhttp://www.w3.org/2001/XMLSchema xmlns:xsihttp://www.w3.org/2001/XMLSchema-instancetest10/test1dicint1/intstring123/stringint2/intstring234/stringint3/intstring345/string/dic /TestLesson4二反序列化测试 void Start() {TestLesson4 tl4 new TestLesson4();using (StreamReader reader new StreamReader(path)) {XmlSerializer s new XmlSerializer(typeof(TestLesson4)); tl4 s.Deserialize(reader) as TestLesson4;} }五、自定义 XML 数据管理类 using System; using System.IO; using System.Xml.Serialization; using UnityEngine;public class XmlDataMgr {// 单例模式public static XmlDataMgr Instance { get; } new XmlDataMgr();// 防止外部实例化该管理类private XmlDataMgr() { }/// summary/// 保存数据到xml文件中/// /summary/// param namedata数据对象/param/// param namefileName文件名/parampublic void SaveData(object data, string fileName) {// 1.得到存储路径string path Application.persistentDataPath / fileName .xml;// 2.存储文件using (StreamWriter writer new StreamWriter(path)) {// 3.序列化XmlSerializer s new XmlSerializer(data.GetType());s.Serialize(writer, data);}}/// summary/// 从xml文件中读取内容 /// /summary/// param nametype对象类型/param/// param namefileName文件名/param/// returns/returnspublic object LoadData(Type type, string fileName) {// 1.首先要判断文件是否存在string path Application.persistentDataPath / fileName .xml;if (!File.Exists(path)) {path Application.streamingAssetsPath / fileName .xml;if (!File.Exists(path)) {// 如果根本不存在文件 两个路径都找过了// 那么直接new 一个对象 返回给外部 无非 里面都是默认值return Activator.CreateInstance(type);}}// 2.存在就读取using (StreamReader reader new StreamReader(path)) {// 3.反序列化 取出数据XmlSerializer s new XmlSerializer(type);return s.Deserialize(reader);}} }if (!File.Exists(path)) {path Application.streamingAssetsPath / fileName .xml;if (!File.Exists(path)) {// 如果根本不存在文件 两个路径都找过了// 那么直接new 一个对象 返回给外部 无非 里面都是默认值return Activator.CreateInstance(type);}}// 2.存在就读取using (StreamReader reader new StreamReader(path)) {// 3.反序列化 取出数据XmlSerializer s new XmlSerializer(type);return s.Deserialize(reader);}} }
http://www.zqtcl.cn/news/420468/

相关文章:

  • 做一个小型网站多少钱wordpress 手机商城模板
  • 谷歌网站收录提交金山网站建设关键词排名
  • 域名备案中网站可以开通个人网站开发多少钱
  • 西安维护网站广州公司网站设计制作
  • 荆门做网站网络推广公司多久能回本
  • 搜索网站存在的关键字室内设计公司排名榜
  • 响应式网页开发昆明网站排名优化公司哪家好
  • 如东建设局网站线上购物平台
  • 重庆网站推广营销淘宝的网站怎么做的好
  • 重庆企业建站模板珠海企业官网设计制作
  • 网页作图软件东莞优化哪家好
  • 专业的商城网站开发深圳网站界面设计
  • 做网站需要自备服务器吗专业生产车间设计图纸网站
  • 用vs2010做网站教程昆明模板建站定制网站
  • dedecms网站模板下载做网站价格需要多少钱
  • 昆明餐饮网站建设建电影网站教程
  • 怎么做服装网站wordpress 主题 三栏
  • 个人可否建立网站全包装修
  • 哈尔滨网站建设贴吧网站建设推广好做吗
  • 南宁网站建设排名制作网站的公司做网站去哪里找
  • 网站开发外贸材料信息价查询网站
  • 推荐几个好的seo网站程序模板WordPress博客建站系统
  • 手机网站建设推广方案ppt模板wordpress文章阅读统计
  • 自己可以接单做网站吗建设项目所在地公共媒体网站
  • 哈尔滨网站制作哪儿好薇学校网站首页代码html
  • 网站建设与设计 毕业设计企业自助网站建设
  • ip库网站源码佛山网站开发公司
  • 婚庆网站怎么设计模板电子商务系统规划方案
  • 东莞中企动力做网站wordpress结合tornado
  • 用织梦做手机移动版网站邯郸网站建设品牌加盟