在批量读取文件时,使用StreamReader可以有效地处理大量的数据。以下是一种常见的StreamReader策略:
示例代码如下:
using System;
using System.IO;
class Program
{
static void Main()
{
using (StreamReader sr = new StreamReader("input.txt"))
{
string line;
while ((line = sr.ReadLine()) != null)
{
// 在这里处理读取到的数据,例如可以输出到控制台或写入到另一个文件
Console.WriteLine(line);
}
}
}
}
在上面的示例中,程序会打开名为"input.txt"的文件,并逐行读取文件内容,然后将每行数据输出到控制台。使用using语句来确保StreamReader对象在使用完毕后会被自动关闭,以避免资源泄漏。您还可以根据需要修改处理逻辑,例如将数据写入到另一个文件或进行其他操作。