.NET中使用Protobuffer实现序列化和反序列化
1. 到官方下载protobuf-net.dll,官方地址:http://code.google.com/p/protobuf-net/
2. 建一个控制台应用程序
3. 添加类库:protobuf-net.dll到应用程序。
示例代码:
准备一个要测试的实体类(注意类和方法都要加上protoBuffer序列化的特性):
[ProtoContract]
public class Student
{
[ProtoMember(1)]
public intStudentId { get; set; }
[ProtoMember(2)]
public stringName { get; set; }
[ProtoMember(3)]
public stringClassName { get; set; }
}然后对这个类进行序列化和反序列化
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ProtoBuf;
using ProtoBufferDemo.Entity;
using System.IO;
namespace ProtoBufferDemo
{
class Program
{
private const string TestPath = @"D:/1.txt";
static void Main(string[] args)
{
////////////////////////序列化//////////////////////////////
Student stu = new Student()
{
StudentId = 1,
Name = "zhangsan",
ClassName = "classOne"
};
if (!File.Exists(TestPath))
{
FileStream fs = File.Create(TestPath,1024, FileOptions.Asynchronous);
fs.Dispose();
}
Console.WriteLine("开始序列化并导出到文件...");
using (Stream s = new FileStream(TestPath,FileMode.Open ,FileAccess.ReadWrite))
{
Serializer.Serialize<Student>(s, stu);
s.Close();
}
Console.WriteLine("序列化完毕");
//////////////////////反序列化////////////////////////////
Console.WriteLine("反序列化并输出...");
using (Stream s = new FileStream(TestPath,FileMode.Open))
{
Student st = Serializer.Deserialize<Student>(s);
Console.WriteLine("studentName:"+ stu.Name + "/r/n" +
"studentId:"+ stu.StudentId + "/r/n" +
"className:" + stu.ClassName);
s.Close();
}
Console.Read();
}
}
}现在考虑一下多个实体的情况,测试一下序列化一个集合:
本文档主要讲述的是JSON.NET 简单的使用;JSON.NET使用来将.NET中的对象转换为JSON字符串(序列化),或者将JSON字符串转换为.NET中已有类型的对象(反序列化?)。希望本文档会给有需要的朋友带来帮助;感兴趣的朋友可以过来看看
0
class Program
{
private const string TestPath = @"D:/1.txt";
static void Main(string[] args)
{
////////////////////////序列化//////////////////////////////
List<Student> stu = new List<Student>()
{
new Student(){
StudentId = 1,
Name = "zhangsan",
ClassName = "classOne"},
new Student(){StudentId = 2,
Name = "lisi",
ClassName = "classTwo"}
};
if (!File.Exists(TestPath))
{
FileStream fs = File.Create(TestPath,1024, FileOptions.Asynchronous);
fs.Dispose();
}
Console.WriteLine("开始序列化并导出文件...");
using (Stream s = new FileStream(TestPath,FileMode.Open, FileAccess.ReadWrite))
{
Serializer.Serialize<List<Student>>(s,stu);
s.Close();
}
Console.WriteLine("序列化完毕");
//////////////////////反序列化////////////////////////////
Console.WriteLine("反序列化并输出...");
using (Stream s = new FileStream(TestPath,FileMode.Open))
{
List<Student> sl = Serializer.Deserialize<List<Student>>(s);
foreach (var student in sl)
{
Console.WriteLine("studentName:"+ student.Name + "/r/n" +
"studentId:" + student.StudentId + "/r/n" +
"class Name:" + student.ClassName);
}
s.Close();
}
Console.Read();
}
} 以上就是.NET中使用Protobuffer 实现序列化和反序列化的详解的内容,更多相关内容请关注PHP中文网(www.php.cn)!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号