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

用流的方式写入记事本

时间:2015-02-26 11:39:14      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

1  private void LogWrite(string text)
2         {
3             FileStream fs = new FileStream(this.Server.MapPath("/log.txt"), FileMode.Append);
4             StreamWriter sw = new StreamWriter(fs);
5             sw.WriteLine(text);
6             sw.Close();
7             fs.Close();
8         }

 

用流的方式写入记事本

标签:

原文地址:http://www.cnblogs.com/jiebo/p/4300697.html

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