6.C#文本处理和文件IO.pptVIP

  • 8
  • 0
  • 约2.72万字
  • 约 87页
  • 2017-06-20 发布于四川
  • 举报
using System; using System.IO; using System.Text; namespace ConsoleApplication2 { class Class1 { //多线程COM时使用[MTAThread] [STAThread] static void Main(string[] args) { StreamReader sr = new StreamReader(c:\\temp.txt, Encoding.GetEncoding(gb2312)); string line; while((line = sr.ReadLine()) != null) { Console.WriteLine(line); } sr.Close(); Console.ReadLine(); } } } 写入文本文件 与StreamReader类对应的类是StreamWriter类,它专门用于写入文本文件 Public Stream

文档评论(0)

1亿VIP精品文档

相关文档