• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#的XML序列化及反序列化

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

  webservice在工作中用到的很多,基本都是以XML格式问通讯内容,其中最关键的就是XML串的序列化及反序列化。

  XML的运用中有两种信息传递,一种为XML的请求信息,另一种为返回信息,要运用XML,首先要为这两种返回信息新建实体类。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml.Serialization;

namespace Test1
{
    [Serializable]
    public class RequestBase
    {
        [XmlElement(Order = 1)]
        public string Name
        {
            get;
            set;
        }

        [XmlElement(Order = 2)]
        public string Age
        {
            get;
            set;
        }

    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml.Serialization;

namespace Test1
{
    [Serializable]
    public class ResponseBase
    {
        [XmlElement(Order = 1)]
        public string Information
        {
            get;
            set;
        }
    }
}

  然后编写将XML序列化和反序列化的方法:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml.Serialization;
using System.IO;

namespace Test1
{
    public class Function
    {
        //反序列化
        public static T Deserialize<T>(string xml)
        {
            XmlSerializer xs = new XmlSerializer(typeof(T));
            StringReader sr = new StringReader(xml);
            T obj = (T)xs.Deserialize(sr);
            sr.Close();
            sr.Dispose();
            return obj;
        }

        //序列化
        public static string Serializer<T>(T t)
        {
            XmlSerializerNamespaces xsn = new XmlSerializerNamespaces();
            xsn.Add(string.Empty, string.Empty);
            XmlSerializer xs = new XmlSerializer(typeof(T));
            StringWriter sw=new StringWriter();
            xs.Serialize(sw, t, xsn);
            string str = sw.ToString();
            sw.Close();
            sw.Dispose();
            return str;
        }
    }
}

  然后再具体实现将请求信息通过代码处理变成返回信息的方法:

public string Test(string xml)
        {
            RequestBase request = Function.Deserialize<RequestBase>(xml);
            ResponseBase response = new ResponseBase();
            response.Information = "姓名:" + request.Name + " 年龄为:" + request.Age;
            return Function.Serializer<ResponseBase>(response);
        }

  示例XML:<?xml version="1.0" encoding="utf-8"?><RequestBase><Name>逗你玩</Name><Age>25</Age></RequestBase>

  返回值为:

<string xmlns="http://tempuri.org/">
<?xml version="1.0" encoding="utf-16"?> <ResponseBase> <Information>姓名:逗你玩 年龄为:25</Information> </ResponseBase>
</string>

  


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#andASP.NETInterviewQuestions发布时间:2022-07-13
下一篇:
[转载]C#之DataSet类发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap