C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C# protobuf-net序列化

C#使用protobuf-net进行序列化的详细操作

作者:chenzk的博客

本文带领大家学习C#中protobuf-net工具的另一种使用体验,这个工具的使用体验属于Code-First模式,先定义类型,并使用注解进行标记,不需要先编写.proto文件,感兴趣的朋友跟随小编一起看看吧

protobuf 是 google的一个开源项目,可用于以下两种用途:

(1)数据的存储(序列化和反序列化),类似于xml、json等;

(2)制作网络通信协议。

  源代码下载地址:https://github.com/mgravell/protobuf-net;

  开源项目地址如下:https://code.google.com/p/protobuf-net/。

前一篇文章我们看到使用Google.Protobuf有诸多不便(参考《www.jb51.net/article/230186.htm》),这次我们来看看另一个工具的使用体验。

相关资料、链接:

准备工作

在C#中编写目标类型:

在类级别增加注解[ProtoContract],在字段级别增加注解[ProtoMember(orderxxx)]

[ProtoContract]
    public class ErrorLog
    {
        [ProtoMember(1)]
        public string LogID { get; set; }
        [ProtoMember(2)]

        public string Context { get; set; }
        [ProtoMember(3)]

        public string Stack { get; set; }
    }

当安装了protobuf-net.BuildTools工具后,还可以在开发时对目标类型(添加了[ProtoContract]注解)的定义进行检查,比如字段顺序重复、使用的字段类型不符合protobuf要求等。比如因疏忽设置了重复的字段顺序,提示效果如下:

序列化操作

public static byte[] Serialize(ErrorLog log)
        {
            using (MemoryStream memoryStream = new MemoryStream())
            {
                ProtoBuf.Serializer.Serialize(memoryStream, log);
                return memoryStream.ToArray();
            }
        }

反序列化操作

public static ErrorLog DeSerialize(byte[] data)
        {
            using (MemoryStream ms = new MemoryStream(data))
            {
                return ProtoBuf.Serializer.Deserialize<ErrorLog>(ms);
            }
        }

总结、理解

到此这篇关于C#中使用protobuf-net进行序列化的文章就介绍到这了,更多相关C# protobuf-net序列化内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文