• C# 将对象序列化为XML


    在.Net 中 我们可以把C# 对象转化成为xml ,也可以把xml转化为 C#对象:

    如下例子:

    using System;
    using System.Text;
    using System.Xml;
    using System.Xml.Serialization;
    using System.IO;
    
    namespace Object2xml
    {
        class Program
        {
            static void Main(string[] args)
            {
                hooyes a = new hooyes();
                a.ID = 1;
                a.Author = "hooyes";
                a.content = "www.hooyes.com";
                subcalss s=new subcalss();
                s.item="ok";
                a.sub = s;
    
                //将对象序列化成xml
                string xml = Serialize<hooyes>(a);
                Console.WriteLine(xml);
    
                //将xml反序列化成对象
                hooyes b = new hooyes();
                b=  Deserialize<hooyes>(b, xml);
                Console.WriteLine(b.content);
    
                Console.Read();
            }
    
            static string Serialize<T>(T t)
            {
                using (StringWriter sw = new StringWriter())
                {
                    XmlSerializer xz = new XmlSerializer(t.GetType());
                    xz.Serialize(sw, t);
                    return sw.ToString();
                }
            }
             static T Deserialize<T>(T t, string s)
             {
                 using (StringReader sr = new StringReader(s))
                 {
                     XmlSerializer xz = new XmlSerializer(t.GetType());
    
                     return (T)xz.Deserialize(sr);
                 }
             }
        }
        //[XmlRoot("root")]
        public class hooyes
        {
           // [XmlAttribute(AttributeName = "ID")]
            public int ID { get; set; }
            public string Author { get; set; }
            public string content { get; set; }
            public subcalss sub { get; set; }
    
        }
        public class subcalss
        {
            public string item { get; set; }
        }
    
    
    }
    
    

  • 相关阅读:
    enmo_day_07
    enmo_day_04
    enmo_day_05
    数据仓库的模型设计
    Lucene 概念,定义应用场景
    enum 枚举的简单应用
    单例模式&synchronized
    Spark的 DAGschedule & task schedule 区别以及相互联系
    Spark的stage & job & task 到底是什么 ,以及划分原理
    Java基本数据类型&引用类型总结
  • 原文地址:https://www.cnblogs.com/hooyes/p/object2xml.html
Copyright © 2020-2023  润新知