txt文档的读取与写入

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

txt文档的读取与写入

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();

        }


txt文档的读取与写入

public void Read(string path) { StreamReader sr = new StreamReader(path,Encoding.Default); ...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息