StreamReader 读取Txt文件
时间: 2023-06-23 13:59:44 浏览: 101
streamReader读取文件
4星 · 用户满意度95%
可以使用 .NET Framework 中的 StreamReader 类来读取文本文件。以下是一个示例代码:
```csharp
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
string filePath = @"C:\example.txt";
using (StreamReader reader = new StreamReader(filePath))
{
string line;
while ((line = reader.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
}
```
在示例代码中,首先需要指定要读取的文本文件的路径。然后使用 `StreamReader` 类创建一个文件读取器,并使用 `using` 语句确保文件读取器在使用结束后被正确地释放。在 `while` 循环中,使用 `ReadLine()` 方法逐行读取文件内容,并将每行内容输出到控制台上。
阅读全文