blogjava's web log

          blogjava's web log
          ...

          系列化例[導入]


          [Serializable]
          ????
          public?class?MyObject?
          ????
          {
          ????????
          public?int?n1?=?0;
          ????????
          public?int?n2?=?0;
          ????????
          public?String?str?=?null;
          ????}

          using?System;
          using?System.Drawing;
          using?System.Collections;
          using?System.ComponentModel;
          using?System.Windows.Forms;
          using?System.Data;
          using?System.IO?;
          using?System.Runtime?.Serialization?.Formatters?.Binary?;
          using?System.Runtime?.Serialization?;

          //系列化
          private?void?button1_Click(object?sender,?System.EventArgs?e)
          ????????
          {
          ????????????MyObject?obj?
          =?new?MyObject();
          ????????????obj.n1?
          =?1;
          ????????????obj.n2?
          =?24;
          ????????????obj.str?
          =?"Some?String";
          ????????????IFormatter?formatter?
          =?new?BinaryFormatter();
          ????????????Stream?stream?
          =?new?FileStream("MyFile.bin",?FileMode.Create,?FileAccess.Write,?FileShare.None);
          ????????????formatter.Serialize(stream,?obj);
          ????????????stream.Close();

          ????????}

          //反。。。。。。
          ????????private?void?button2_Click(object?sender,?System.EventArgs?e)
          ????????
          {
          ????????????IFormatter?formatter?
          =?new?BinaryFormatter();
          ????????????Stream?stream?
          =?new?FileStream("MyFile.bin",?FileMode.Open,?FileAccess.Read,?FileShare.Read);
          ????????????MyObject?obj?
          =?(MyObject)?formatter.Deserialize(stream);
          ????????????stream.Close();
          ????????????MessageBox.Show?(obj.n1.ToString?()?);

          ????????}

          posted on 2006-05-28 14:25 record java and net 閱讀(322) 評論(0)  編輯  收藏 所屬分類: dot net相關

          導航

          常用鏈接

          留言簿(44)

          新聞檔案

          2.動態語言

          3.工具箱

          9.文檔教程

          友情鏈接

          搜索

          最新評論

          主站蜘蛛池模板: 龙泉市| 尉犁县| 白山市| 五大连池市| 永清县| 光泽县| 汉川市| 濮阳市| 玉门市| 赫章县| 郓城县| 西林县| 宁远县| 镇赉县| 大宁县| 稻城县| 方正县| 榆中县| 株洲县| 长春市| 陆川县| 九龙城区| 自治县| 建昌县| 乐安县| 海南省| 鄂托克旗| 进贤县| 剑阁县| 资源县| 科尔| 临江市| 海安县| 新巴尔虎左旗| 拉萨市| 泾阳县| 咸阳市| 通许县| 呼玛县| 乌海市| 伽师县|