C#StreamWriter类用于以特定编码将字符写入流。它继承了TextWriter类。它提供重载的write()和writeln()方法以将数据写入文件。
C#StreamWriter示例
让我们看一个简单的StreamWriter类示例,该类将单行数据写入文件。
using System;
using System.IO;
public class StreamWriterExample
{
public static void Main(string[] args)
{
FileStream f = new FileStream("e:\\output.txt", FileMode.Create);
StreamWriter s = new StreamWriter(f);
s.WriteLine("hello c#");
s.Close();
f.Close();
Console.WriteLine("File created successfully...");
}
}
输出:
File created successfully...
现在打开文件,你将在output.txt文件中看到文本“ hello c#”。
【C# StreamWriter用法】output.txt:
hello c#
推荐阅读
- C# StreamReader用法
- C#系统异常
- C#已检查和未检查
- C#名称空间namespace
- C#封装
- C#访问修饰符
- C#接口interface
- C#抽象abstract
- C#密封sealed