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

文件流读写

时间:2016-09-26 14:23:30      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

1.命名空间
   System.IO
2.五句创建及完成读写操作句子
   FileStream myfs = new FileStream(path,FileMode.Open);//创建读写流,path为路径
   StreamWriter mysw = new StreamWriter(myfs);//创建读写器
   //StreamReader mysr = new StreamReader(myfs);
   mysw.Write(content);//执行写入,content为写入内容
   //String text = mysr.ReadToEnd();
   mysw.Close();//关闭读写器
   myfs.Close();//关闭读写流
 
3.精简为三句
   StreamWrite mysw = new StreamWrite(path);//直接创建读写器,path为路径
   //StreamReader mysr = new StreamReader(path);//读的写法
   //string text = mysr.ReadeToEnd();//读的写法
   mysw.Write(content);//写入,content为写入内容
   mysw.Close();//关闭读写流

文件流读写

标签:

原文地址:http://www.cnblogs.com/wu-tong/p/5908882.html

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