C# IO和序列化

文件目錄

相關(guān)類

  • DirectoryInfo
  • Direcoty
  • FileInfo
  • File

相關(guān)操作API:

  • Create
  • Exists
  • MoveTo
  • Open

文件相關(guān)屬性

  • Name
  • FullName
  • CreationTime
  • Attributes

流 IO

定義

流代表在源文件和目標(biāo)文件之間傳輸一定量的數(shù)據(jù)
通過流訪問網(wǎng)絡(luò),內(nèi)存地址,和其它與流相關(guān)的設(shè)備

常用流類

FileStream 讀取和寫入一個(gè)字節(jié)或者字節(jié)數(shù)組

         static void TestFileStream()
        {
            using (FileStream fs = File.Open("msg.dat", FileMode.Create))
            {
                string msg = "hello";
                byte[] msgByteArray = Encoding.Default.GetBytes(msg);
                fs.Write(msgByteArray, 0, msgByteArray.Length);

                fs.Position = 0;

                byte[] byteFromFile = new byte[msgByteArray.Length];
                for(int i = 0; i < msgByteArray.Length; i++)
                {
                    byteFromFile[i] = (byte)fs.ReadByte();
                    Console.Write(byteFromFile[i]);
                }
            }
        }
        
 

StreamWriter 基于字符的讀寫流

        static void TestStreamWriter()
        {
            using (StreamWriter writer = File.CreateText("test.txt"))
            {
                writer.WriteLine("hello");
                writer.WriteLine("world");
                writer.WriteLine("its a test file create by streamwriter");
            }
        }
        
        /// <summary>
        /// 將文本信息當(dāng)作內(nèi)存中的字符一樣處理
        /// </summary>
        static void TestStreamReader()
        {
            using (StreamReader reader = File.OpenText("test.txt"))
            {
                string input = null;
                while((input == reader.ReadLine()))
                {
                    Console.WriteLine(input);
                }
            }
        }   

StreamReader 將文本信息當(dāng)作內(nèi)存中的字符一樣處理

        static void TestStreamReader()
        {
            using (StreamReader reader = File.OpenText("test.txt"))
            {
                string input = null;
                while((input == reader.ReadLine()))
                {
                    Console.WriteLine(input);
                }
            }
        }
        
        
        static void TestStringWriter()
        {
            using (StringWriter writer = new StringWriter())
            {
                writer.WriteLine("hahhhhh ");
                writer.WriteLine("aaaaaa ");
                Console.WriteLine(writer);

                Console.WriteLine("----------");
                using (StringReader reader = new StringReader(writer.ToString()))
                {
                    string input = null;
                    while((input = reader.ReadLine()) != null)
                    {
                        Console.WriteLine(input);
                    }
                }
            }
        }

BinaryWriter 二進(jìn)制格式讀寫數(shù)據(jù)流窗轩,支持隨機(jī)數(shù)據(jù)訪問 Seek

 static void TestBinaryWriter()
        {
            FileInfo f = new FileInfo("BinFile.dat");
            using(BinaryWriter bw = new BinaryWriter(f.OpenWrite()))
            {
                Console.WriteLine(bw.BaseStream);

                double aDouble = 12233.22;
                int anInt = 1022;
                string aString = "a,b,c";
                bw.Write(aDouble);
                bw.Write(anInt);
                bw.Write(aString);
            }

            Console.WriteLine("Done!");
           
        }

        static void TestBinaryReader()
        {
            FileInfo f = new FileInfo("BinFile.dat");
            using (BinaryReader br = new BinaryReader(f.OpenRead()))
            {
                Console.WriteLine(br.ReadDouble());
                Console.WriteLine(br.ReadInt32());
                Console.WriteLine(br.ReadString());
            }
        }

觀察文件變動(dòng) FileSystemWatcher

        static void TestFileWatcher()
        {
            FileSystemWatcher watcher = new FileSystemWatcher();
            try
            {
                watcher.Path = ".";

            }
            catch(ArgumentException ex)
            {
                Console.WriteLine(ex.Message);
                return;
            }

            watcher.NotifyFilter = NotifyFilters.LastAccess
                | NotifyFilters.LastWrite
                | NotifyFilters.DirectoryName
                | NotifyFilters.FileName;

            //只觀察文本文件
            watcher.Filter = "*.txt";

            watcher.Changed += new FileSystemEventHandler(OnChanged);
            watcher.Created += new FileSystemEventHandler(OnChanged);
            watcher.Deleted += new FileSystemEventHandler(OnChanged);
            watcher.Renamed += new RenamedEventHandler(OnRenamed);

            //開始觀察目錄
            watcher.EnableRaisingEvents = true;

            Console.WriteLine(@"Press 'q' to quit app.");
            while (Console.Read() != 'q') ;
                
        }

        static void OnChanged(object source, FileSystemEventArgs e)
        {
            Console.WriteLine("File:{0} {1}", e.FullPath, e.ChangeType);
        }

        static void OnRenamed(object source, RenamedEventArgs e)
        {
            Console.WriteLine("File: {0} renamed to {1}", e.OldFullPath, e.FullPath);
        }

序列化

定義

持久化一個(gè)對象的狀態(tài)到流(文件流和內(nèi)存流)的過程。

BinaryFormatter 二進(jìn)制序列化

    static void TestSerialize()
    {
        UserPref userData = new UserPref();
        userData.WindowColor = "Red";
        userData.FontSize = 50;
    
        BinaryFormatter binFormat = new BinaryFormatter();
        using(Stream fStream = new FileStream("user.dat", FileMode.Create, FileAccess.Write, FileShare.None))
        {
            binFormat.Serialize(fStream, userData);
        }
    }


    static void LoadFromBinaryFile()
    {
        BinaryFormatter binFormat = new BinaryFormatter();
        using (Stream fStream = File.OpenRead("user.dat"))
        {
            UserPref userData = (UserPref)binFormat.Deserialize(fStream);

            Console.WriteLine("UserPref {0},{1}", userData.WindowColor, userData.FontSize);
        }

    }
    
    [Serializable]
    public class UserPref
    {
        public string WindowColor;
        public int FontSize;
    }


    //參與序列化缘滥,不可繼承
    [Serializable]
    public class Radio
    {
        public bool hasTweeners;
        public bool hasSubWoofers;
        public double[] stationPresets;

        //不參與序列化
        [NonSerialized]
        public string radioID = "XF-3344";
    }    
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末获讳,一起剝皮案震驚了整個(gè)濱河市诵原,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌顷蟀,老刑警劉巖酒请,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異鸣个,居然都是意外死亡羞反,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門囤萤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來昼窗,“玉大人,你說我怎么就攤上這事涛舍〕尉” “怎么了?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵富雅,是天一觀的道長掸驱。 經(jīng)常有香客問我,道長吹榴,這世上最難降的妖魔是什么亭敢? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任滚婉,我火速辦了婚禮图筹,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘让腹。我一直安慰自己远剩,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布骇窍。 她就那樣靜靜地躺著瓜晤,像睡著了一般。 火紅的嫁衣襯著肌膚如雪腹纳。 梳的紋絲不亂的頭發(fā)上痢掠,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天,我揣著相機(jī)與錄音嘲恍,去河邊找鬼足画。 笑死,一個(gè)胖子當(dāng)著我的面吹牛佃牛,可吹牛的內(nèi)容都是我干的淹辞。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼俘侠,長吁一口氣:“原來是場噩夢啊……” “哼象缀!你這毒婦竟也來了蔬将?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤央星,失蹤者是張志新(化名)和其女友劉穎霞怀,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體莉给,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡里烦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了禁谦。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片胁黑。...
    茶點(diǎn)故事閱讀 38,814評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖州泊,靈堂內(nèi)的尸體忽然破棺而出丧蘸,到底是詐尸還是另有隱情,我是刑警寧澤遥皂,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布力喷,位于F島的核電站,受9級特大地震影響演训,放射性物質(zhì)發(fā)生泄漏弟孟。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一样悟、第九天 我趴在偏房一處隱蔽的房頂上張望拂募。 院中可真熱鬧,春花似錦窟她、人聲如沸陈症。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽录肯。三九已至,卻和暖如春吊说,著一層夾襖步出監(jiān)牢的瞬間论咏,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工颁井, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留厅贪,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓蚤蔓,卻偏偏與公主長得像卦溢,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容