码迷,mamicode.com
首页 > Windows程序 > 详细

【C#】打开文件并写入内容

时间:2015-11-06 17:55:22      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

 

            //获取文本框中的文本内容
            string content = textBox1.Text.Trim();

            //1.创建FileStream对象,指定文件路径,以及打开方式,文件放在bin/debug/Content.txt
            FileStream fs = new FileStream(@"Content.txt", FileMode.Open);
            //2.获取内容转换成byes类型的数组
            byte[] info = Encoding.UTF8.GetBytes(content);
            //3.写入
            fs.Write(info, 0, info.Length);
            //4.释放资源
            fs.Dispose();

  

【C#】打开文件并写入内容

标签:

原文地址:http://www.cnblogs.com/baixdu/p/4943111.html

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