文件流读写

Posted 吴_彤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件流读写相关的知识,希望对你有一定的参考价值。

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();//关闭读写流

以上是关于文件流读写的主要内容,如果未能解决你的问题,请参考以下文章

java 文件读写流

字符流之文件读写流

对文件流按格式读写取数据,文件流的状态检查

提升文件的读写效率--缓冲流

IO流 读写文件

Java 字符流读写文件