有多種方法可以逐行讀取文字檔案。這些包括 StreamReader.ReadLine、File.ReadLines 等。讓我們考慮我們的文本文件中存在的文本文件。 本機具有如下所示的行。
使用 StreamReader.ReadLine -
C# StreamReader 用於將字元讀取到指定的流中編碼。 StreamReader.Read 方法讀取下一個字元或下一組字符 輸入流。 StreamReader 繼承自 TextReader,它提供了以下方法: 讀取一個字元、區塊、行或所有內容。
using System; using System.IO; using System.Text; namespace DemoApplication{ public class Program{ static void Main(string[] args){ using (var fileStream = File.OpenRead(@"D:\Demo\Demo.txt")) using (var streamReader = new StreamReader(fileStream, Encoding.UTF8)){ String line; while ((line = streamReader.ReadLine()) != null){ Console.WriteLine(line); } } Console.ReadLine(); } } }
Hi All!! Hello Everyone!! How are you?
File.ReadAllLines() 方法開啟一個文字文件,將文件的所有行讀入一個
IEnumerable
using System; using System.IO; namespace DemoApplication{ public class Program{ static void Main(string[] args){ var lines = File.ReadLines(@"D:\Demo\Demo.txt"); foreach (var line in lines){ Console.WriteLine(line); } Console.ReadLine(); } } }
Hi All!! Hello Everyone!! How are you?
這與 ReadLines 非常相似。但是,它傳回 String[] 而不是
IEnumerable
using System; using System.IO; namespace DemoApplication{ public class Program{ static void Main(string[] args){ var lines = File.ReadAllLines(@"D:\Demo\Demo.txt"); for (var i = 0; i < lines.Length; i += 1){ var line = lines[i]; Console.WriteLine(line); } Console.ReadLine(); } } }
Hi All!! Hello Everyone!! How are you?
以上是使用 C# 逐行讀取文字檔案最快的方法有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!