1 //文件的讀取方式一 2 //直接讀取文件 3 4 string textContent=File.ReadAllText("路徑","讀取的文件內容類型"); 5 6 //文件讀取 方式二 7 8 string FileName="";//表示路徑 9 using(FlieStream fs= ...
1 //文件的讀取方式一 2 //直接讀取文件 3 4 string textContent=File.ReadAllText("路徑","讀取的文件內容類型"); 5 6 //文件讀取 方式二 7 8 string FileName="";//表示路徑 9 using(FlieStream fs=new FlieStream('FlieName',FileMode.open,FileAccess.Read)) 10 { 11 using(StreamReader sr=new StreamReader(fs)) 12 { 13 List<string> strList=new List<String>(); 14 while(!sr.EndOfStream) 15 { 16 17 strList.Add( sr.ReadLine()); 18 } 19 } 20 } 21 22 23 24 //文件的寫入 25 26 //方式一 直接寫入 27 28 string txtContent=File.WriteAllText(“文件寫入路徑”,"寫入的內容","內容呈現的格式"); 29 30 //方式二 31 32 using(FileSteam fs=new FileStream("寫入路徑",FileMode.OpenOrCreate,FileAccess.ReadWrite)) 33 { 34 string content="fsfasf"; 35 byte[] strContent=Encoding.Default.GetBytes(content); 36 fs.Write(strContent,0,strContent.length); 37 } 38 39 40 //方式三 41 42 using(StreamWriter sw=new StreamWriter(“文件寫入路徑”,"","編碼格式","寫入的大小")) 43 { 44 sw.WriteLine(“寫入的內容”); 45 sw.Flush(); 46 } 47 48 49View Code
寫的不是咋好,希望大家看到有錯誤的地方指正。