c#如何逐行读取txt文件数据

c#
359
2023/12/5 1:43:16
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,可以使用StreamReader类逐行读取txt文件数据。下面是一个示例代码:

using System;
using System.IO;

class Program
{
    static void Main()
    {
        string filePath = "path_to_your_txt_file.txt";

        // 使用StreamReader打开文件
        using (StreamReader sr = new StreamReader(filePath))
        {
            string line;

            // 逐行读取文件数据
            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
        }
    }
}

在上述代码中,请将path_to_your_txt_file.txt替换为你要读取的txt文件的路径。然后,我们使用StreamReader类打开文件,并使用ReadLine()方法逐行读取数据。每次读取一行数据后,可以进行后续处理,这里我们简单地将每行数据打印到控制台上。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c# blockingcollection怎样优化内存使用