探讨:使用XMLSerialize 序列化与反序列化


Posted in PHP onJune 08, 2013

概念:XML序列化是将公共字段和属性转化为序列格式(这里指XML),以便存储或传输的过程。反序列化则是从XML中重新创建原始状态的对象.

    class SerializeDemo
    {
        static void Main()
        {
            EmployeeCollection employeeCollection = new EmployeeCollection()
            {
                Employees = Employeer.Employees()
            };
            XmlSerializer serialize = new XmlSerializer(typeof(EmployeeCollection));
            string filePath = @"E:\PProject\Test\Employee.xml";
             SerializeEmployee(serialize, filePath, employeeCollection);
            DeserializeEmployee(serialize, filePath);
        }
        static void SerializeEmployee(XmlSerializer serialize, string filePath, EmployeeCollection employeeCollection)
        {
            using (FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write))
            {
                serialize.Serialize(fs, employeeCollection);
            }
        }
        static void DeserializeEmployee(XmlSerializer serialize,string filePath)
        {
            using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read))
            {
                EmployeeCollection collection = (EmployeeCollection)serialize.Deserialize(fs);
                collection.Employees.ForEach(e => Console.WriteLine("Name:{0},Gender:{1},Age:{2},Education:{3}", e.userName, e.gender, e.age, e.education));
            }
        }
    }
    [Serializable]
    public class EmployeeCollection
    {
        public List<Employeer> Employees { get; set; }
    }
    [Serializable]
    public class Employeer
    {
        public string userId { get; set; }
        public string userName { get; set; }
        public string gender { get; set; }
        public int age { get; set; }
        public List<WorkExperience> workExperience { get; set; }
        public string education { get; set; }
        public static List<Employeer> Employees()
        {
           return new List<Employeer>()
           {
                new Employeer() 
                {   
                    userId = "0001",
                    userName = "guoHu",
                    gender="Man",
                    age=25,education="underGraduate",
                    workExperience = WorkExperience.GetWorkExperience("0001")
                }
           };        }
    }
    [Serializable]
    public class WorkExperience
    {
        public string userId { get; set; }
        public string companyName { get; set; }
        public string seniority { get; set; }
        public static List<WorkExperience> GetWorkExperience(string userId)
        {
            List<WorkExperience> workExperience = new List<WorkExperience>();
            Unity unity = Unity.GetInstance();
            DataTable table = new DataTable();
            unity.GetTable(out table);
            var experiences = (from experience in table.AsEnumerable()
                               where experience.Field<string>("UserId") == userId
                               select new
                               {
                                   companyName = experience.Field<string>("CompanyName"),
                                   seniority = experience.Field<string>("Seniority")
                               }).ToList();
            experiences.ForEach(e => workExperience.Add(new WorkExperience() { companyName = e.companyName, seniority = e.seniority }));
            return workExperience;
        }
    }
    public class Unity
    {
        public static DataTable tables = new DataTable();
        public static DataRow dr;
        public static DataColumn dc = new DataColumn();
        public static object objLock = new object();
        public static Unity unityInstance;
        private Unity()
        {
        }
        public static Unity GetInstance()
        {
            if (unityInstance == null)
            {
                lock (objLock)
                {
                    if (unityInstance == null)
                    {
                        unityInstance = new Unity();
                    }
                }
            }
            return unityInstance;
        }
        public void GetTable(out DataTable dt)
        {
            unityInstance.CreateTable();
            dr = tables.NewRow();
            dr["UserId"] = "0001";
            dr["CompanyName"] = "WireSoft";
            dr["Seniority"] = "2012.02-2012.05";
            tables.Rows.Add(dr);
            dr = tables.NewRow();
            dr["UserId"] = "0001";
            dr["CompanyName"] = "Jin Xun";
            dr["Seniority"] = "2009.07-2011.02";
            tables.Rows.Add(dr);
            dr = tables.NewRow();
            dr["UserId"] = "0002";
            dr["CompanyName"] = "Hua Wei";
            dr["Seniority"] = "2011.07-";
            tables.Rows.Add(dr);
            dt = tables.Copy();
        }
        public  void CreateTable()
        {
            dc = new DataColumn("UserId", System.Type.GetType("System.String"));
            tables.Columns.Add(dc);
            dc = new DataColumn("companyName", System.Type.GetType("System.String"));
            tables.Columns.Add(dc);
            dc = new DataColumn("seniority", System.Type.GetType("System.String"));
            tables.Columns.Add(dc);
        }
    }

PHP 相关文章推荐
echo, print, printf 和 sprintf 区别
Dec 06 PHP
PHP提取中文首字母
Apr 09 PHP
在PHP中养成7个面向对象的好习惯
Jan 28 PHP
php正则过滤html标签、空格、换行符的代码(附说明)
Oct 25 PHP
PHP类的静态(static)方法和静态(static)变量使用介绍
Feb 19 PHP
通过table标签,PHP输出EXCEL的实现方法
Jul 24 PHP
Destoon旺旺无法正常显示,点击提示“会员名不存在”的解决办法
Jun 21 PHP
linux下安装php的memcached客户端
Aug 03 PHP
CI操作cookie的方法分析(基于helper类库)
Mar 28 PHP
利用PHP命令行模式采集股票趋势信息
Aug 09 PHP
ajax调用返回php接口返回json数据的方法(必看篇)
May 05 PHP
php获取ajax的headers方法与内容实例
Dec 27 PHP
解析PHP自带的进位制之间的转换函数
Jun 08 #PHP
深入PHP内存相关的功能特性详解
Jun 08 #PHP
PHP rawurlencode与urlencode函数的深入分析
Jun 08 #PHP
PHP跳转页面的几种实现方法详解
Jun 08 #PHP
利用php递归实现无限分类 格式化数组的详解
Jun 08 #PHP
如何利用php array_multisort函数 对数据库结果进行复杂排序
Jun 08 #PHP
php引用返回与取消引用的详解
Jun 08 #PHP
You might like
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法
2009/05/28 PHP
php+js实现图片的上传、裁剪、预览、提交示例
2013/08/27 PHP
PHP实现动态柱状图改进版
2015/03/30 PHP
php调用KyotoTycoon简单实例
2015/04/02 PHP
php把数组值转换成键的方法
2015/07/13 PHP
FastCGI 进程意外退出造成500错误
2015/07/26 PHP
详解yii2实现分库分表的方案与思路
2017/02/03 PHP
phpstorm 正则匹配删除空行、注释行(替换注释行为空行)
2018/01/21 PHP
基于jquery的一个OutlookBar类,动态创建导航条
2010/11/19 Javascript
按给定几率进行随机抽取的js代码
2010/12/28 Javascript
修复ie8&amp;chrome下window的resize事件多次执行
2011/10/20 Javascript
JS实现超炫网页烟花动画效果的方法
2015/03/02 Javascript
JavaScript浏览器对象之一Window对象详解
2016/06/03 Javascript
后端接收不到AngularJs中$http.post发送的数据原因分析及解决办法
2016/07/05 Javascript
浅谈js中的三种继承方式及其优缺点
2016/08/10 Javascript
BootStrap下拉菜单和滚动监听插件实现代码
2016/09/26 Javascript
Vue组件之Tooltip的示例代码
2017/10/18 Javascript
vue中引用阿里字体图标的方法
2018/02/10 Javascript
vue-cli3 项目从搭建优化到docker部署的方法
2019/01/28 Javascript
React学习之受控组件与数据共享实例分析
2020/01/06 Javascript
小程序自动化测试的示例代码
2020/08/11 Javascript
原生小程序封装跑马灯效果
2020/10/21 Javascript
Python实例之wxpython中Frame使用方法
2014/06/09 Python
Python 获取中文字拼音首个字母的方法
2018/11/28 Python
python整小时 整天时间戳获取算法示例
2019/02/20 Python
基于python cut和qcut的用法及区别详解
2019/11/22 Python
Python使用jpype模块调用jar包过程解析
2020/07/29 Python
python爬取”顶点小说网“《纯阳剑尊》的示例代码
2020/10/16 Python
ProBikeKit德国:在线公路自行车专家
2018/06/03 全球购物
英国国家美术馆商店:National Gallery
2019/05/01 全球购物
Furla官网:意大利著名的皮革品牌
2019/08/06 全球购物
国培计划培训感言
2014/03/11 职场文书
年度安全生产目标责任书
2014/07/23 职场文书
2015年党员创先争优公开承诺书
2015/04/27 职场文书
举起手来观后感
2015/06/09 职场文书
SpringBoot集成Druid连接池连接MySQL8.0.11
2021/07/02 Java/Android