使用 System.IO.StreamWriter 类将行写入文件
实现 TextWriter,以便以特定编码将字符写入流中。
使用 WriteLine
方法,你可以逐行将内容写入文件。
请注意 using
关键字的使用,该关键字确保 StreamWriter 对象在超出范围时立即处理,从而关闭文件。
string[] lines = { "My first string", "My second string", "and even a third string" };
using (System.IO.StreamWriter sw = new System.IO.StreamWriter(@"C:\MyFolder\OutputText.txt"))
{
foreach (string line in lines)
{
sw.WriteLine(line);
}
}
请注意,StreamWriter 可以在其构造函数中接收第二个 bool
参数,允许 Append
到文件而不是覆盖文件:
bool appendExistingFile = true;
using (System.IO.StreamWriter sw = new System.IO.StreamWriter(@"C:\MyFolder\OutputText.txt", appendExistingFile ))
{
sw.WriteLine("This line will be appended to the existing file");
}