C# StreamReader和StreamWriter

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6. using System.IO;  
  7. namespace _08StreamReader和StreamWriter  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //使用StreamReader来读取一个文本文件  
  14.             //using (StreamReader sr = new StreamReader(@"C:\Users\SpringRain\Desktop\抽象类特点.txt",Encoding.Default))  
  15.             //{  
  16.             //    while (!sr.EndOfStream)  
  17.             //    {  
  18.             //        Console.WriteLine(sr.ReadLine());  
  19.             //    }  
  20.             //}  
  21.   
  22.   
  23.             //使用StreamWriter来写入一个文本文件  
  24.             using (StreamWriter sw = new StreamWriter(@"C:\Users\SpringRain\Desktop\newnew.txt",true))  
  25.             {  
  26.                 sw.Write("看我有木有把你覆盖掉");  
  27.             }  
  28.             Console.WriteLine("OK");  
  29.             Console.ReadKey();  
  30.         }  
  31.     }  
  32. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: