首页 > 其他 > 详细

StreamReader和StreamWrite操作文件

时间:2020-10-16 17:23:36      阅读:30      评论:0      收藏:0      [点我收藏+]
StreamReader和StreamWrite操作文件
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _04Stream读写文件
{
    class Program
    {
        static void Main(string[] args)
        {
            string filePathr = @"E:\dotNet\Study\1.txt";
            StreamReader sr = new StreamReader(filePathr, Encoding.Default);
            while (!sr.EndOfStream)
            {
                Console.WriteLine(sr.ReadLine());
            }

            Console.ReadKey();


            string filePathw = @"E:\dotNet\Study\2.txt";
            string ss = "今天天气真好,花儿都开了!";
            using (StreamWriter sw = new StreamWriter(filePathw, false, Encoding.Default))  
            {
                sw.Write(ss);
                Console.WriteLine("写入成功!");
            }

            Console.ReadKey();
        }
    }
}

 

StreamReader和StreamWrite操作文件

原文:https://www.cnblogs.com/nymz/p/13826446.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!