首页 > 其他 > 详细

XmlSerializer使用

时间:2014-02-25 16:20:39      阅读:315      评论:0      收藏:0      [点我收藏+]

XmlSerializer是对xml进行序列化操作的对象。写了一个Order的序列化方法供留念。

序列化针对有get,set的属性;属性必须是public方式;对象顺序和序列化的顺序一致。

对象定义

bubuko.com,布布扣
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Artech.XmlSerializerDemos
{
    public class Order
    {
        private double _totalPrice;

        private Guid _id;
        public Guid ID
        {
            get { return _id; }
            //set;
        }

        private DateTime _date;
        public DateTime Date
        {
            //get;
            set{_date=value;}
        }

        public string Customer
        {
            get;
            set;
        }

        public string ShipAddress
        {
            get;
            set;

        }

        public Order() { }

        public Order(double totalPrice)
        {
            this._totalPrice = totalPrice;
        }
    }
}
bubuko.com,布布扣

 

序列化方法

bubuko.com,布布扣
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Serialization;

namespace Artech.XmlSerializerDemos
{
    class Program
    {
        static void Main(string[] args)
        {
            Order order = new Order()
            {
                //ID = Guid.NewGuid(),
                Date = DateTime.Today,
                Customer = "Foo",
                ShipAddress = "airport address"
            };
            Serialize<Order>(order, @"E:\Order.xml");
        }

        static void Serialize<T>(T instance, string fileName)
        {
            using (XmlWriter writer = new XmlTextWriter(fileName, Encoding.UTF8))
            {
                XmlSerializer serializer = new XmlSerializer(typeof(T));
                serializer.Serialize(writer, instance);
            }
        }
    }
}
bubuko.com,布布扣

XmlSerializer使用

原文:http://www.cnblogs.com/chinaagan/p/3565476.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!