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; }
        }
    
    
    }
    
    

  • 相关阅读:
    [转]为Ubuntu Server安装gnome图形桌面环境
    [转]ubuntu 安装五笔输入法
    [转]更改文件所有者
    QT 透明设置
    ubuntu 交叉编译arm linux 内核
    Opencv vs 2005编译
    [转]在skyeye中运行uboot
    object的引用 与 foreach的使用
    音频和视频
    HTML5 Canvas API
  • 原文地址:https://www.cnblogs.com/hooyes/p/object2xml.html
Copyright © 2011-2022 走看看