c#StreamWriter,StreamReader類(主要用於文字檔訪問)

來源:互聯網
上載者:User

標籤:

1、為什麼要使用StreamReader或者StreamWriter

如果對文字檔需要讀取一部分顯示一部分則使用FileStream會有問題,因為可能FileStream會在讀取的時候把一個漢字的位元組數給分開。所以造成顯示的時候無法正確顯示字串。所以對於讀取大文字檔一般使用StreamReader類。對於大文字檔寫入一般用StreamWriter類。

2、StreamWriter

            //1.建立一個StreamWriter            using (StreamWriter sw = new StreamWriter("test.txt", false, Encoding.UTF8))            {                //2.執行讀寫                for (int i = 0; i < 1000; i++)                {                    sw.WriteLine(i + "======" + System.DateTime.Now.ToString());                }            }            Console.WriteLine("ok");            Console.ReadKey();

3、StreamReader

            #region StreamReader使用            //1.建立StreamReader 對象            using (StreamReader reader = new StreamReader("英漢詞典TXT格式.txt", Encoding.Default))            {                #region 1                while (!reader.EndOfStream)                {                    string line = reader.ReadLine();                    Console.WriteLine(line);                }                #endregion                #region 2                int count = 0;                while (reader.ReadLine() != null)                {                    count++;                    Console.WriteLine(reader.ReadLine());                }                Console.WriteLine(count );                File.ReadAllLines(                #endregion                #region 2                //2.迴圈讀取每一行資料。                string line = null;                int count = 0;                while ((line = reader.ReadLine()) != null)                {                    count++;                    Console.WriteLine(line);                }                //Console.WriteLine(count);                #endregion            }            Console.WriteLine("ok");            Console.ReadKey();            #endregion

  

c#StreamWriter,StreamReader類(主要用於文字檔訪問)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.