深入理解C#序列化与反序列化的详解
程序员文章站
2023-12-20 23:20:22
在我们深入探讨c#序列化和反序列化之前我们先要明白什么是序列化,它又称串行化,是.net运行时环境用来支持用户定义类型的流化的机制。序列化就是把一个对象保存到一个文件或数据...
在我们深入探讨c#序列化和反序列化之前我们先要明白什么是序列化,它又称串行化,是.net运行时环境用来支持用户定义类型的流化的机制。序列化就是把一个对象保存到一个文件或数据库字段中去,反序列化就是在适当的时候把这个文件再转化成原来的对象使用。其目的是以某种存储形成使自定义对象持久化,或者将这种对象从一个地方传输到另一个地方。.net框架提供了两种串行化的方式:
1、是使用binaryformatter进行串行化;
2、使用soapformatter进行串行化;
3、使用xmlserializer进行串行化。
第一种方式提供了一个简单的二进制数据流以及某些附加的类型信息,而第二种将数据流格式化为xml存储;第三种其实和第二种差不多也是xml的格式存储,只不过比第二种的xml格式要简化很多(去掉了soap特有的额外信息)。可以使用[serializable]属性将类标志为可序列化的。如果某个类的元素不想被序列化,1、2可以使用[nonserialized]属性来标志,2、可以使用[xmlignore]来标志。
下面就让我们开始深入了解c#序列化和反序列化:
c#序列化和反序列化1、使用binaryformatter进行串行化
下面是一个可串行化的类:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.io;
using system.runtime.serialization.formatters.binary;
/**//// ﹤summary﹥
/// classtoserialize 的摘要说明
/// ﹤/summary﹥
[serializable]
public class classtoserialize
{
public int id = 100;
public string name = "name";
[nonserialized]
public string sex = "男";
}
下面是串行化和反串行化的方法:
public void serializenow()
{
classtoserialize c = new classtoserialize();
filestream filestream =
new filestream("c:\\temp.dat", filemode.create);
binaryformatter b = new binaryformatter();
b.serialize(filestream, c);
filestream.close();
}
public void deserializenow()
{
classtoserialize c = new classtoserialize();
c.sex = "kkkk";
filestream filestream =
new filestream("c:\\temp.dat",
filemode.open, fileaccess.read, fileshare.read);
binaryformatter b = new binaryformatter();
c = b.deserialize(filestream) as classtoserialize;
response.write(c.name);
response.write(c.sex);
filestream.close();
}
调用上述两个方法可以看到串行化的结果:sex属性因为被标志为[nonserialized],故其值总是为null。
c#序列化和反序列化2、使用soapformatter进行串行化
和binaryformatter类似,我们只需要做一下简单修改即可:
a.将using语句中的.formatter.binary改为.formatter.soap;
b.将所有的binaryformatter替换为soapformatter.
c.确保报存文件的扩展名为.xml
经过上面简单改动,即可实现soapformatter的串行化,这时候产生的文件就是一个xml格式的文件。
c#序列化和反序列化3、使用xmlserializer进行串行化
关于格式化器还有一个问题,假设我们需要xml,但是不想要soap特有的额外信息,那么我们应该怎么办呢?有两中方案:要么编写一个实现iformatter接口的类,采用的方式类似于soapformatter类,但是没有你不需要的信息;要么使用库类xmlserializer,这个类不使用serializable属性,但是它提供了类似的功能。
如果我们不想使用主流的串行化机制,而想使用xmlseralizer进行串行化我们需要做一下修改:
a.添加system.xml.serialization命名空间。
b.serializable和noserialized属性将被忽略,而是使用xmlignore属性,它的行为与noserialized类似。
c.xmlseralizer要求类有个默认的构造器,这个条件可能已经满足了。
下面看c#序列化和反序列化示例:
要序列化的类:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.xml.serialization;
[serializable]
public class person
{
private string name;
public string name
{
get
{
<span style="white-space: pre"> </span> return name;
<span style="white-space: pre"> </span>}
<span style="white-space: pre"> </span>set
<span style="white-space: pre"> </span>{
<span style="white-space: pre"> </span> name = value;
<span style="white-space: pre"> </span>}
}
public string sex;
public int age = 31;
public course[] courses;
public person()
{
}
public person(string name)
{
<span style="white-space: pre"> </span>name = name;
<span style="white-space: pre"> </span>sex = "男";
}
}
[serializable]
public class course
{
public string name;
[xmlignore]
public string description;
public course()
{
}
public course(string name, string description)
{
<span style="white-space: pre"> </span>name = name;
<span style="white-space: pre"> </span>description = description;
}
}
c#序列化和反序列化方法:
public void xmlserialize()
{
person c = new person("cyj");
c.courses = new course[2];
c.courses[0] = new course("英语", "交流工具");
c.courses[1] = new course("数学","自然科学");
xmlserializer xs = new xmlserializer(typeof(person));
stream stream = new filestream("c:\\cyj.xml",filemode.create,fileaccess.write,fileshare.read);
xs.serialize(stream,c);
stream.close();
}
public void xmldeserialize()
{
xmlserializer xs = new xmlserializer(typeof(person));
stream stream = new filestream("c:\\cyj.xml",filemode.open,fileaccess.read,fileshare.read);
person p = xs.deserialize(stream) as person;
response.write(p.name);
response.write(p.age.tostring());
response.write(p.courses[0].name);
response.write(p.courses[0].description);
response.write(p.courses[1].name);
response.write(p.courses[1].description);
stream.close();
}
这里course类的description属性值将始终为null,生成的xml文档中也没有该节点,如下:
﹤?xml version="1.0"?﹥
﹤person xmlns:xsi=
"http://www.w3.org/2001/xmlschema-instance"
xmlns:xsd="http://www.w3.org/2001/xmlschema"﹥
﹤sex﹥男﹤/sex﹥
﹤age﹥31﹤/age﹥
﹤courses﹥
﹤course﹥
﹤name﹥英语﹤/name﹥
﹤description﹥交流工具﹤/description﹥
﹤/course﹥
﹤course﹥
﹤name﹥数学﹤/name﹥
﹤description﹥自然科学﹤/description﹥
﹤/course﹥
﹤/courses﹥
﹤name﹥cyj﹤/name﹥
﹤/person﹥
c#序列化和反序列化4、自定义序列化
如果你希望让用户对类进行串行化,但是对数据流的组织方式不完全满意,那么可以通过在自定义类中实现接口来自定义串行化行为。这个接口只有一个方法,getobjectdata. 这个方法用于将对类对象进行串行化所需要的数据填进serializationinfo对象。你使用的格式化器将构造serializationinfo对象,然后在串行化时调用getobjectdata. 如果类的父类也实现了iserializable,那么应该调用getobjectdata的父类实现。如果你实现了iserializable,那么还必须提供一个具有特定原型的构造器,这个构造器的参数列表必须与getobjectdata相同。这个构造器应该被声明为私有的或受保护的,以防止粗心的开发人员直接使用它。示例如下:
c#序列化和反序列化之实现iserializable的类:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.runtime.serialization;
using system.runtime.serialization.formatters.binary;
/**//// ﹤summary﹥
/// employee 的摘要说明
/// ﹤/summary﹥
[serializable]
public class employee:iserializable
{
public int empid=100;
public string empname="刘德华";
[nonserialized]
public string noserialstring = "noserialstring-test";
public employee()
{
//
<span style="white-space: pre"> </span>// todo: 在此处添加构造函数逻辑
<span style="white-space: pre"> </span>//
}
private employee(serializationinfo info, streamingcontext ctxt)
{
<span style="white-space: pre"> </span>empid = (int)info.getvalue("employeeid", typeof(int));
<span style="white-space: pre"> </span>empname = (string)info.getvalue("employeename",typeof(string));
<span style="white-space: pre"> </span>//noserialstring = (string)info.getvalue("employeestring",typeof(string));
}
public void getobjectdata(serializationinfo info, streamingcontext ctxt)
{
<span style="white-space: pre"> </span>info.addvalue("employeeid", empid);
<span style="white-space: pre"> </span>info.addvalue("employeename", empname);
<span style="white-space: pre"> </span>//info.addvalue("employeestring", noserialstring);
}
}
c#序列化和反序列化方法:
public void otheremployeeclasstest()
{
employee mp = new employee();
mp.empid = 10;
mp.empname = "邱枫";
mp.noserialstring = "你好呀";
stream steam = file.open("c:\\temp3.dat", filemode.create);
binaryformatter bf = new binaryformatter();
response.write("writing employee info:");
bf.serialize(steam,mp);
steam.close();
mp = null;
//c#序列化和反序列化之反序列化
stream steam2 = file.open("c:\\temp3.dat", filemode.open);
binaryformatter bf2 = new binaryformatter();
response.write("reading employee info:");
employee mp2 = (employee)bf2.deserialize(steam2);
steam2.close();
response.write(mp2.empid);
response.write(mp2.empname);
response.write(mp2.noserialstring);
}
c#序列化和反序列化的深入探讨就是一个体验和尝试的过程,那么希望本文对你了解和学习c#序列化和反序列化有所帮助。
1、是使用binaryformatter进行串行化;
2、使用soapformatter进行串行化;
3、使用xmlserializer进行串行化。
第一种方式提供了一个简单的二进制数据流以及某些附加的类型信息,而第二种将数据流格式化为xml存储;第三种其实和第二种差不多也是xml的格式存储,只不过比第二种的xml格式要简化很多(去掉了soap特有的额外信息)。可以使用[serializable]属性将类标志为可序列化的。如果某个类的元素不想被序列化,1、2可以使用[nonserialized]属性来标志,2、可以使用[xmlignore]来标志。
下面就让我们开始深入了解c#序列化和反序列化:
c#序列化和反序列化1、使用binaryformatter进行串行化
下面是一个可串行化的类:
复制代码 代码如下:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.io;
using system.runtime.serialization.formatters.binary;
/**//// ﹤summary﹥
/// classtoserialize 的摘要说明
/// ﹤/summary﹥
[serializable]
public class classtoserialize
{
public int id = 100;
public string name = "name";
[nonserialized]
public string sex = "男";
}
下面是串行化和反串行化的方法:
复制代码 代码如下:
public void serializenow()
{
classtoserialize c = new classtoserialize();
filestream filestream =
new filestream("c:\\temp.dat", filemode.create);
binaryformatter b = new binaryformatter();
b.serialize(filestream, c);
filestream.close();
}
public void deserializenow()
{
classtoserialize c = new classtoserialize();
c.sex = "kkkk";
filestream filestream =
new filestream("c:\\temp.dat",
filemode.open, fileaccess.read, fileshare.read);
binaryformatter b = new binaryformatter();
c = b.deserialize(filestream) as classtoserialize;
response.write(c.name);
response.write(c.sex);
filestream.close();
}
调用上述两个方法可以看到串行化的结果:sex属性因为被标志为[nonserialized],故其值总是为null。
c#序列化和反序列化2、使用soapformatter进行串行化
和binaryformatter类似,我们只需要做一下简单修改即可:
a.将using语句中的.formatter.binary改为.formatter.soap;
b.将所有的binaryformatter替换为soapformatter.
c.确保报存文件的扩展名为.xml
经过上面简单改动,即可实现soapformatter的串行化,这时候产生的文件就是一个xml格式的文件。
c#序列化和反序列化3、使用xmlserializer进行串行化
关于格式化器还有一个问题,假设我们需要xml,但是不想要soap特有的额外信息,那么我们应该怎么办呢?有两中方案:要么编写一个实现iformatter接口的类,采用的方式类似于soapformatter类,但是没有你不需要的信息;要么使用库类xmlserializer,这个类不使用serializable属性,但是它提供了类似的功能。
如果我们不想使用主流的串行化机制,而想使用xmlseralizer进行串行化我们需要做一下修改:
a.添加system.xml.serialization命名空间。
b.serializable和noserialized属性将被忽略,而是使用xmlignore属性,它的行为与noserialized类似。
c.xmlseralizer要求类有个默认的构造器,这个条件可能已经满足了。
下面看c#序列化和反序列化示例:
要序列化的类:
复制代码 代码如下:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.xml.serialization;
复制代码 代码如下:
[serializable]
public class person
{
private string name;
public string name
{
get
{
<span style="white-space: pre"> </span> return name;
<span style="white-space: pre"> </span>}
<span style="white-space: pre"> </span>set
<span style="white-space: pre"> </span>{
<span style="white-space: pre"> </span> name = value;
<span style="white-space: pre"> </span>}
}
public string sex;
public int age = 31;
public course[] courses;
public person()
{
}
public person(string name)
{
<span style="white-space: pre"> </span>name = name;
<span style="white-space: pre"> </span>sex = "男";
}
}
复制代码 代码如下:
[serializable]
public class course
{
public string name;
[xmlignore]
public string description;
public course()
{
}
public course(string name, string description)
{
<span style="white-space: pre"> </span>name = name;
<span style="white-space: pre"> </span>description = description;
}
}
c#序列化和反序列化方法:
复制代码 代码如下:
public void xmlserialize()
{
person c = new person("cyj");
c.courses = new course[2];
c.courses[0] = new course("英语", "交流工具");
c.courses[1] = new course("数学","自然科学");
xmlserializer xs = new xmlserializer(typeof(person));
stream stream = new filestream("c:\\cyj.xml",filemode.create,fileaccess.write,fileshare.read);
xs.serialize(stream,c);
stream.close();
}
public void xmldeserialize()
{
xmlserializer xs = new xmlserializer(typeof(person));
stream stream = new filestream("c:\\cyj.xml",filemode.open,fileaccess.read,fileshare.read);
person p = xs.deserialize(stream) as person;
response.write(p.name);
response.write(p.age.tostring());
response.write(p.courses[0].name);
response.write(p.courses[0].description);
response.write(p.courses[1].name);
response.write(p.courses[1].description);
stream.close();
}
这里course类的description属性值将始终为null,生成的xml文档中也没有该节点,如下:
复制代码 代码如下:
﹤?xml version="1.0"?﹥
﹤person xmlns:xsi=
"http://www.w3.org/2001/xmlschema-instance"
xmlns:xsd="http://www.w3.org/2001/xmlschema"﹥
﹤sex﹥男﹤/sex﹥
﹤age﹥31﹤/age﹥
﹤courses﹥
﹤course﹥
﹤name﹥英语﹤/name﹥
﹤description﹥交流工具﹤/description﹥
﹤/course﹥
﹤course﹥
﹤name﹥数学﹤/name﹥
﹤description﹥自然科学﹤/description﹥
﹤/course﹥
﹤/courses﹥
﹤name﹥cyj﹤/name﹥
﹤/person﹥
c#序列化和反序列化4、自定义序列化
如果你希望让用户对类进行串行化,但是对数据流的组织方式不完全满意,那么可以通过在自定义类中实现接口来自定义串行化行为。这个接口只有一个方法,getobjectdata. 这个方法用于将对类对象进行串行化所需要的数据填进serializationinfo对象。你使用的格式化器将构造serializationinfo对象,然后在串行化时调用getobjectdata. 如果类的父类也实现了iserializable,那么应该调用getobjectdata的父类实现。如果你实现了iserializable,那么还必须提供一个具有特定原型的构造器,这个构造器的参数列表必须与getobjectdata相同。这个构造器应该被声明为私有的或受保护的,以防止粗心的开发人员直接使用它。示例如下:
c#序列化和反序列化之实现iserializable的类:
复制代码 代码如下:
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.runtime.serialization;
using system.runtime.serialization.formatters.binary;
/**//// ﹤summary﹥
/// employee 的摘要说明
/// ﹤/summary﹥
[serializable]
public class employee:iserializable
{
public int empid=100;
public string empname="刘德华";
[nonserialized]
public string noserialstring = "noserialstring-test";
public employee()
{
//
<span style="white-space: pre"> </span>// todo: 在此处添加构造函数逻辑
<span style="white-space: pre"> </span>//
}
private employee(serializationinfo info, streamingcontext ctxt)
{
<span style="white-space: pre"> </span>empid = (int)info.getvalue("employeeid", typeof(int));
<span style="white-space: pre"> </span>empname = (string)info.getvalue("employeename",typeof(string));
<span style="white-space: pre"> </span>//noserialstring = (string)info.getvalue("employeestring",typeof(string));
}
public void getobjectdata(serializationinfo info, streamingcontext ctxt)
{
<span style="white-space: pre"> </span>info.addvalue("employeeid", empid);
<span style="white-space: pre"> </span>info.addvalue("employeename", empname);
<span style="white-space: pre"> </span>//info.addvalue("employeestring", noserialstring);
}
}
c#序列化和反序列化方法:
复制代码 代码如下:
public void otheremployeeclasstest()
{
employee mp = new employee();
mp.empid = 10;
mp.empname = "邱枫";
mp.noserialstring = "你好呀";
stream steam = file.open("c:\\temp3.dat", filemode.create);
binaryformatter bf = new binaryformatter();
response.write("writing employee info:");
bf.serialize(steam,mp);
steam.close();
mp = null;
//c#序列化和反序列化之反序列化
stream steam2 = file.open("c:\\temp3.dat", filemode.open);
binaryformatter bf2 = new binaryformatter();
response.write("reading employee info:");
employee mp2 = (employee)bf2.deserialize(steam2);
steam2.close();
response.write(mp2.empid);
response.write(mp2.empname);
response.write(mp2.noserialstring);
}
c#序列化和反序列化的深入探讨就是一个体验和尝试的过程,那么希望本文对你了解和学习c#序列化和反序列化有所帮助。