cshap 读取txt文件
时间: 2023-09-09 21:07:24 浏览: 109
读取txt文件
以下是使用C#读取txt文件的示例代码:
```csharp
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
// 读取文件路径
string filePath = "text.txt";
try
{
// 打开文件流
using (StreamReader sr = new StreamReader(filePath))
{
// 逐行读取文件内容
string line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
```
以上代码使用`StreamReader`类打开文件流,并逐行读取文件内容。如果发生异常,将会捕获并输出异常信息。
阅读全文