http://www.cnblogs.com/jx270/archive/2013/04/14/3020456.htmlhtml
(一) 讀取文件數組
若是你要讀取的文件內容不是不少,能夠使用 File.ReadAllText(FilePath) 或指定編碼方式 File.ReadAllText(FilePath, Encoding)的方法。它們都一次將文本內容所有讀完,並返回一個包含所有文本內容的字符串app
string str = File.ReadAllText(@"c:\temp\ascii.txt"); // 也能夠指定編碼方式 string str2 = File.ReadAllText(@"c:\temp\ascii.txt", Encoding.ASCII);
也能夠使用方法File.ReadAllLines。該方法返回一個字符串數組。每一行都是一個數組元素。編碼
string[] strs = File.ReadAllLines(@"c:\temp\ascii.txt"); // 也能夠指定編碼方式 string[] strs2 = File.ReadAllLines(@"c:\temp\ascii.txt", Encoding.ASCII);
當文本的內容比較大時,咱們就不要將文本內容一次讀完,而應該採用流(Stream)的方式來讀取內容。.Net爲咱們封裝了StreamReader類。初始化StreamReader類有不少種方式。下面我羅列出幾種spa
StreamReader sr1 = new StreamReader(@"c:\temp\utf-8.txt"); // 一樣也能夠指定編碼方式 StreamReader sr2 = new StreamReader(@"c:\temp\utf-8.txt", Encoding.UTF8); FileStream fs = new FileStream(@"C:\temp\utf-8.txt", FileMode.Open, FileAccess.Read, FileShare.None); StreamReader sr3 = new StreamReader(fs); StreamReader sr4 = new StreamReader(fs, Encoding.UTF8); FileInfo myFile = new FileInfo(@"C:\temp\utf-8.txt"); // OpenText 建立一個UTF-8 編碼的StreamReader對象 StreamReader sr5 = myFile.OpenText(); // OpenText 建立一個UTF-8 編碼的StreamReader對象 StreamReader sr6 = File.OpenText(@"C:\temp\utf-8.txt");
初始化完成以後,你能夠每次讀一行,也能夠每次讀一個字符 ,還能夠每次讀幾個字符,甚至也能夠一次將全部內容讀完。rest
// 讀一行 string nextLine = sr.ReadLine(); // 讀一個字符 int nextChar = sr.Read(); // 讀100個字符 int nChars = 100; char[] charArray = new char[nChars]; int nCharsRead = sr.Read(charArray, 0, nChars); // 所有讀完 string restOfStream = sr.ReadToEnd();
使用完StreamReader以後,不要忘記關閉它: sr.Closee();code
假如咱們須要一行一行的讀,將整個文本文件讀完,下面看一個完整的例子:htm
StreamReader sr = File.OpenText(@"C:\temp\ascii.txt"); string nextLine; while ((nextLine = sr.ReadLine()) != null) { Console.WriteLine(nextLine); } sr.Close();
(二) 寫入文件對象
寫文件和讀文件同樣,若是你要寫入的內容不是不少,能夠使用File.WriteAllText方法來一次將內容所有寫如文件。若是你要將 一個字符串的內容寫入文件,能夠用File.WriteAllText(FilePath) 或指定編碼方式 File.WriteAllText(FilePath, Encoding)方法。blog
string str1 = "Good Morning!"; File.WriteAllText(@"c:\temp\test\ascii.txt", str1); // 也能夠指定編碼方式 File.WriteAllText(@"c:\temp\test\ascii-2.txt", str1, Encoding.ASCII);
若是你有一個字符串數組,你要將每一個字符串元素都寫入文件中,能夠用File.WriteAllLines方法:
string[] strs = { "Good Morning!", "Good Afternoon!" }; File.WriteAllLines(@"c:\temp\ascii.txt", strs); File.WriteAllLines(@"c:\temp\ascii-2.txt", strs, Encoding.ASCII);
使用File.WriteAllText或File.WriteAllLines方法時,若是指定的文件路徑不存在,會建立一個新文件;若是文件已經存在,則會覆蓋原文件。
當要寫入的內容比較多時,一樣也要使用流(Stream)的方式寫入。.Net封裝的類是StreamWriter。初始化StreamWriter類一樣有不少方式:
// 若是文件不存在,建立文件; 若是存在,覆蓋文件 StreamWriter sw1 = new StreamWriter(@"c:\temp\utf-8.txt"); // 也能夠指定編碼方式 // true 是 append text, false 爲覆蓋原文件 StreamWriter sw2 = new StreamWriter(@"c:\temp\utf-8.txt", true, Encoding.UTF8); // FileMode.CreateNew: 若是文件不存在,建立文件;若是文件已經存在,拋出異常 FileStream fs = new FileStream(@"C:\temp\utf-8.txt", FileMode.CreateNew, FileAccess.Write, FileShare.Read); // UTF-8 爲默認編碼 StreamWriter sw3 = new StreamWriter(fs); StreamWriter sw4 = new StreamWriter(fs, Encoding.UTF8); // 若是文件不存在,建立文件; 若是存在,覆蓋文件 FileInfo myFile = new FileInfo(@"C:\temp\utf-8.txt"); StreamWriter sw5 = myFile.CreateText();
初始化完成後,能夠用StreamWriter對象一次寫入一行,一個字符,一個字符數組,甚至一個字符數組的一部分。
// 寫一個字符 sw.Write('a'); // 寫一個字符數組 char[] charArray = new char[100]; // initialize these characters sw.Write(charArray); // 寫一個字符數組的一部分 sw.Write(charArray, 10, 15);
一樣,StreamWriter對象使用完後,不要忘記關閉。sw.Close(); 最後來看一個完整的使用StreamWriter一次寫入一行的例子:
FileInfo myFile = new FileInfo(@"C:\temp\utf-8.txt"); StreamWriter sw = myFile.CreateText(); string[] strs = { "早上好", "下午好" }; foreach (var s in strs) { sw.WriteLine(s); } sw.Close();