close

中翻葡        {
            StreamWriter sw = new StreamWriter(fs);
            sw.Close();// 封閉串流

        }

 

 

文章標籤
C# Stream 文字 檔案
C# Stream 讀/寫文字檔案

 
資料來曆:http://blog.xuite.net/autosun/study/32576568-%5BC%...
 
// 豎立檔案串流(@ 可作廢跳脫字元 escape sequence)
StreamWriter sw = new StreamWriter(@"C:\secret_plan.txt");
sw.WriteLine("write something");// 寫入文字
sw.Close();// 封閉串流
 
// 建立檔案串流(@ 可勾銷跳脫字元 escape sequence)
StreamReader sr = new StreamReader(@"C:\secret_plan.txt");

。-> 翻譯社|,-> 翻譯公司|的-> 翻譯

while (!sr.EndOfStream)// 每次讀取一行,直到檔尾
{
string line = sr.ReadLine();// 讀取文字到 line 變數
}
sr.Close();// 封閉串流
 
//建立紀錄檔
        public static void logFile(String StrFileName 翻譯公司 String StrData)
            sw.WriteLine(StrData);// 寫入文字

            FileStream fs = new FileStream(StrFileName, FileMode.Append);


本文出自: http://jashliao.pixnet.net/blog/post/206148181-c%23-stream-%E8%AE%80-%E5%AF%AB%E6%96%87%E5%AD%97%E6%有關翻譯的問題歡迎諮詢天成翻譯社
arrow
arrow
    文章標籤
    翻譯社
    全站熱搜
    創作者介紹
    創作者 joycex8h8an2 的頭像
    joycex8h8an2

    munozp5111

    joycex8h8an2 發表在 痞客邦 留言(0) 人氣()