有多种方法可以逐行读取文本文件。这些包括 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中文网其他相关文章!