码迷,mamicode.com
首页 > 其他好文 > 详细

序列化

时间:2014-05-29 04:13:06      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:des   c   class   blog   code   a   

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
32
33
34
35
36
37
38
39
40
41
42
43
44
class Program
{
    static void Main(string[] args)
    {
        //需要将对象的状态保存起来  持久化
        //序列化:  将对象的状态持久化到某1中设备上(磁盘.)
        //要将类标记为Serializable 这个类的对象才可以被序列化
        //以二进制的方式序列化  而不是文本文档.
        //反序列化.  将之前序列化的文件还原为对象
 
        //Person p = new Person() { Age = 12, Name = "rose" };
        //System.Runtime.Serialization.Formatters.Binary.BinaryFormatter bf = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
        //using (FileStream fs = new FileStream("se.bin", FileMode.Create))
        //{
        //    bf.Serialize(fs, p);
        //}
        //极品飞车
 
        System.Runtime.Serialization.Formatters.Binary.BinaryFormatter bf = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
        using (FileStream fs = new FileStream("se.bin", FileMode.Open))
        {
            object obj = bf.Deserialize(fs);
            Person p = obj as Person;
            Console.WriteLine(p.Name + ":" + p.Age);
        }
 
        //Person p = new Person();
        //if (File.Exists("1.txt"))
        //{
        //    string[] lines = File.ReadAllLines("1.txt", Encoding.Default);
        //    p.Age = int.Parse(lines[0]);
        //    p.Name = lines[1];
        //}
        //else
        //{
        //    p.Age = 17;
        //    p.Name = "jack";
        //    File.WriteAllLines("1.txt", new string[] { p.Age.ToString(), p.Name });
        //}
        //Console.WriteLine(p.Age+":"+p.Name);
 
        Console.ReadKey();
    }
}

  

序列化,布布扣,bubuko.com

序列化

标签:des   c   class   blog   code   a   

原文地址:http://www.cnblogs.com/sumg/p/3754077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!