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

文件IO(存取.txt文件)

时间:2019-01-03 15:00:32      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:创建   lse   数据流   行数据   写入   根据   nbsp   read   false   

//存文件方法

 public void Save_File_Info(string Save_Path)

 {

      //根据路径,创建文件和数据流

            FileStream FS = new FileStream(Save_Path, FileMode.Create);

            StreamWriter SW = new StreamWriter(FS);

            //开始写入

            SW.WriteLine(“写入文件内容”);

            //清空缓冲区

            SW.Flush();

            //关闭流

            SW.Close();

            FS.Close();

 }

//读取文件方法

 public void Read_File_Info(string Read_Path)

 {

            StreamReader SR = new StreamReader(Read_Path, false);

string str=“”;

            if ((str = SR.ReadLine()) != null)

            {

                    Console.WriteLine(str);

            }

   SR .Close();

 }

   注:path路径为.txt文件路径,此方法适用整行数据流的读取,可修改部分进行完善........

 

文件IO(存取.txt文件)

标签:创建   lse   数据流   行数据   写入   根据   nbsp   read   false   

原文地址:https://www.cnblogs.com/XiaoLang0/p/10213891.html

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