zoukankan      html  css  js  c++  java
  • 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; }
        }
    
    
    }
    
    

  • 相关阅读:
    cookie
    接上一篇
    es6
    本地文件r如何上传到github上
    npm的使用说明
    被公司996下的程序媛心路历程
    起点2020
    ES5(基本包装类型)字符串的方法
    ES5数组的方法
    css伪类
  • 原文地址:https://www.cnblogs.com/hooyes/p/object2xml.html
Copyright © 2011-2022 走看看