c#怎么读取文件中的数据

avatar
作者
猴君
阅读量:0

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

using System; using System.IO;  class Program {     static void Main()     {         try         {             // 指定文件路径             string filePath = "path/to/your/file.txt";              // 创建StreamReader对象,并将文件路径传递给构造函数             using (StreamReader sr = new StreamReader(filePath))             {                 string line;                  // 逐行读取文件内容                 while ((line = sr.ReadLine()) != null)                 {                     // 处理每一行的数据                     Console.WriteLine(line);                 }             }         }         catch (Exception e)         {             Console.WriteLine("读取文件时发生错误: " + e.Message);         }     } } 

在上面的示例中,我们首先通过指定文件路径来创建一个StreamReader对象,然后使用sr.ReadLine()方法逐行读取文件内容,直到读取到文件末尾。每次读取一行后,可以根据需要进行相应的处理。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!