在C#中,可以使用StreamReader類來讀取文件中的數(shù)據(jù)。下面是一個示例代碼:
using System;
using System.IO;
class Program
{
static void Main()
{
try
{
// 指定文件路徑
string filePath = "path/to/your/file.txt";
// 創(chuàng)建StreamReader對象,并將文件路徑傳遞給構(gòu)造函數(shù)
using (StreamReader sr = new StreamReader(filePath))
{
string line;
// 逐行讀取文件內(nèi)容
while ((line = sr.ReadLine()) != null)
{
// 處理每一行的數(shù)據(jù)
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
Console.WriteLine("讀取文件時發(fā)生錯誤: " + e.Message);
}
}
}
在上面的示例中,我們首先通過指定文件路徑來創(chuàng)建一個StreamReader對象,然后使用sr.ReadLine()
方法逐行讀取文件內(nèi)容,直到讀取到文件末尾。每次讀取一行后,可以根據(jù)需要進行相應(yīng)的處理。