txt文档的读取与写入原创
金蝶云社区-希有
希有
11人赞赏了该文章 895次浏览 未经作者许可,禁止转载编辑于2020年08月17日 10:34:24

public void Read(string path)

        {

            StreamReader sr = new StreamReader(path,Encoding.Default);

            String line;

            while ((line = sr.ReadLine()) != null) 

            {

                Console.WriteLine(line.ToString());

            }

        }


public void Write(string path)

        {

            FileStream fs = new FileStream(path, FileMode.Create);

            StreamWriter sw = new StreamWriter(fs);

            //开始写入

            sw.Write("Hello World!!!!");

            //清空缓冲区

            sw.Flush();

            //关闭流

            sw.Close();

            fs.Close();

        }


图标赞 11
11人点赞
还没有人点赞,快来当第一个点赞的人吧!
图标打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!