标题:串行化是什么意思啊
取消只看楼主
casualhewo
Rank: 1
等 级:新手上路
帖 子:267
专家分:0
注 册:2006-6-13
 问题点数:0 回复次数:1 
串行化是什么意思啊
// 串行化对象。
public BinaryFormatter f;
// 串行化对象输出。
private void button1_Click(object sender, System.EventArgs e)
{
if(pictureBox1.Image != null)
{
saveFileDialog1.Filter = "自定义文件(*.ser)|*.ser";
if(saveFileDialog1.ShowDialog() == DialogResult.OK)
{
s = File.Create(saveFileDialog1.FileName);
f = new BinaryFormatter();
// 存储图形文件和对应的文件名。
f.Serialize(s, pictureBox1.Image);
f.Serialize(s, textBox1.Text);
s.Close();
}
}
}
// 对象输入。
private void button2_Click(object sender, System.EventArgs e)
{
openFileDialog1.Filter = "自定义文件(*.ser)|*.ser";
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
s = File.OpenRead(openFileDialog1.FileName);
f = new BinaryFormatter();
pictureBox1.Image = (Image)f.Deserialize(s);
textBox1.Text = (string)f.Deserialize(s);
s.Close();
}
}
搜索更多相关主题的帖子: 串行 ser 定义 sender 
2007-02-04 18:12
casualhewo
Rank: 1
等 级:新手上路
帖 子:267
专家分:0
注 册:2006-6-13
得分:0 

串行化也叫做序列化,就是把存在于内存的对象数据转化成可以保存成硬盘文件的形式去存储;
并行化也叫反序列化,就是把序列化后的硬盘文件加载到内存,重新变成对象数据.

也就是把内存中对象数据变成硬盘文件.


超越自己,挣脱平凡
2007-02-05 08:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-119627-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.544504 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved