码迷,mamicode.com
首页 > 其他好文 > 详细

c# 文件的读写

时间:2014-09-22 17:09:22      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   文件   div   

    读文件:

bubuko.com,布布扣
 1 StreamReader sr = new StreamReader(FileName, Encoding.Default);
 2                 string content = "";
 3                 content = sr.ReadLine();
 4 
 5                 while (content != null)
 6                 {
 7                     //操作逻辑
 8                      ....
 9                      ....
10                     content = sr.ReadLine();
11                 }
12                 sr.Close();
View Code


 

   写文件:

bubuko.com,布布扣
 1             string path = @"路径\list_key.txt";
 2 
 3             FileStream fs1 = new FileStream(path, FileMode.Create, FileAccess.Write);
 4            //创建写入文件 
 5             StreamWriter sw1 = new StreamWriter(fs1, Encoding.Default);
 6             sw1.AutoFlush = true;
 7 
 8            // for (int i = 0; i < strFirstList.Count; i++)
 9            // {
10                // sw1.Write(strFirstList[i]);
11                // sw1.Write(" ");
12                // sw1.WriteLine(strSecList[i]);
13             // }
14 
15 
16             fs1.Close();
View Code

 

c# 文件的读写

标签:style   blog   http   color   os   ar   for   文件   div   

原文地址:http://www.cnblogs.com/chengjunwei/p/3986097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!