东人EP的内陆空间!
posts - 77, comments - 54, trackbacks - 0, articles - 0
IT博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
BinaryFormmater序列化!
Posted on 2006-08-14 18:06
东人EP
阅读(531)
评论(0)
编辑
收藏
引用
所属分类:
.NET
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
using
System.IO;
5
using
System.Runtime.Serialization;
6
using
System.Runtime.Serialization.Formatters.Binary;
7
8
namespace
ConsoleApplication2
9
{
10
class
BinaryFormatterSerialize
11
{
12
static
void
Main(
string
[] args)
13
{
14
/**/
///
/序列化
15
//
SerializeTest st = new SerializeTest(120);
16
//
SerializeTest st1 = new SerializeTest(300);
17
//
BinaryFormatter bf = new BinaryFormatter();
18
//
Stream sr = File.Open("E:\\Serialize.bat", FileMode.Append);
19
//
bf.Serialize(sr, st);
20
//
bf.Serialize(sr, st1);
21
//
sr.Close();
22
23
//
反序列化
24
BinaryFormatter bf
=
new
BinaryFormatter();
25
Stream sread
=
File.OpenRead(
"
E:\\Serialize.bat
"
);
26
SerializeTest sst
=
(SerializeTest)bf.Deserialize(sread);
27
System.Console.WriteLine(sst.Test());
28
sread.Close();
29
}
30
}
31
32
[Serializable]
33
class
SerializeTest
34
{
35
public
SerializeTest(
int
number)
36
{
37
this
._number
=
number;
38
}
39
40
private
int
_number;
41
42
public
int
Number
43
{
44
get
{
return
_number; }
45
set
{ _number
=
value; }
46
}
47
48
public
string
Test()
49
{
50
return
Number.ToString();
51
}
52
}
53
}
54
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 东人EP
日历
<
2006年7月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(11)
给我留言
查看公开留言
查看私人留言
随笔分类
(77)
.NET(43)
Ajax(11)
Design Pattern(1)
Java(1)
JavaScript(5)
MapInfo(10)
NB(6)
随笔档案
(77)
2007年2月 (4)
2007年1月 (10)
2006年12月 (1)
2006年11月 (2)
2006年10月 (5)
2006年9月 (9)
2006年8月 (13)
2006年7月 (8)
2006年6月 (19)
2006年5月 (6)
搜索
最新评论
1. re: 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!
评论内容较长,点击标题查看
--CALDWELLMarjorie
2. re: PetShop3.0学习---数据库关系图
牛XX 分这么细的表
--sf2009
3. re: 显示多行InfoTips
感谢分享你的成功!:)
--LiWeiJiang
4. re: 使用asp.net 2.0和SQL SERVER 2005构建多层应用
不荀了。www.yougoo.net.cn
--ded
5. re: 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!
评论内容较长,点击标题查看
--dsfsd
阅读排行榜
1. 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!(6662)
2. MapInfo MapXtreme 2005 WebGIS上实现简单鹰眼设计!(6619)
3. C#实现串口通信编程(3751)
4. ClickOnce 打包部署WinForm 应用程序(3110)
5. SQLHelper.cs(3010)
评论排行榜
1. 我现在Netyi.net上的下载资料,上面的有许多不错的资料,有好多程序设计方面的!(9)
2. 实现漂亮的XP效果!(8)
3. MapInfo MapXtreme 2005 WebGIS上实现简单鹰眼设计!(7)
4. 如何实现服务器端下页面动态添加JavaScript脚本 (4)
5. PetShop3.0学习---数据库关系图(3)