在C#中读取文本文件,可以使用StreamReader类来实现。下面是一个示例代码:
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = "path/to/your/file.txt";
try
{
using (StreamReader sr = new StreamReader(filePath))
{
string line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
Console.WriteLine("Error: " + e.Message);
}
}
}
上述代码中,首先需要指定要读取的文本文件的路径(filePath
)。然后,使用StreamReader
类来打开文件并读取内容。通过ReadLine
方法逐行读取文件内容,直到文件末尾为止。每读取一行,可以根据需要进行处理,例如打印到控制台。
这种方法不使用分隔符分隔行,而是将整行文本作为一个字符串进行处理。
领取专属 10元无门槛券
手把手带您无忧上云