读写文件

作者:追风剑情 发布于:2014-8-3 13:52 分类:C#

开发工具 Visual Studio 2010

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6.  
  7. namespace FileAccessTest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. WriteText("test content!");
  14.  
  15. System.Console.WriteLine(ReadText());
  16.  
  17. System.Console.ReadKey();
  18. }
  19.  
  20. static void WriteText(string content)
  21. {
  22. StreamWriter sw = new StreamWriter("test.txt", false, Encoding.UTF8);
  23. sw.WriteLine(content);
  24. sw.Flush();
  25. sw.Close();
  26. }
  27.  
  28. static string ReadText()
  29. {
  30. StreamReader sr = new StreamReader("test.txt");
  31. string content = sr.ReadToEnd();
  32. sr.Close();
  33. return content;
  34. }
  35. }
  36. }

运行结果

读写文件.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号