C#编程-118:写入文件StreamWriter类
2023-05-18 09:37:08 阅读次数:98
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.IO;
- namespace StreamWriterTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- string path = @"C:\Users\pengshiyu\Desktop\source\text.txt";
- try
- {
- //way1:
- //FileStream fs = new FileStream(path,FileMode.OpenOrCreate);
- //StreamWriter sw = new StreamWriter(fs);
- //way2:
- StreamWriter sw = new StreamWriter(path, false);
- string mystr = "测试这样话能不能正常显示到文本文件中";
- sw.Write(mystr);
- sw.Close();
- Console.WriteLine("写入完成!");
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- Console.ReadKey();
- }
- }
- }
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/mouday/3046595,作者:彭世瑜,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:C# 程序文件
下一篇:C#编程-57:MonthCalender控件复习笔记