迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

C# 逐行读取文本文件

作者:迹忆客 最近更新:2024/01/16 浏览次数:

我们可以对文本文件执行多种操作。要在任何程序中使用文件中的数据,我们首先需要以适当的数据结构读取该数据。

在 C# 中,有几种有效地逐行读取文本文件的方法。


使用 C# 中的 File.ReadLines() 方法逐行读取文本文件

File.ReadLines() 方法是高效地逐行读取文本文件的最佳方法。这个方法为大型文本文件返回一个枚举类型 Enumerable,这就是为什么我们创建了一个 Enumerable string 对象来存储文本文件的原因。

使用此方法的正确语法如下:

File.ReadLines(FileName);

示例代码:

using System;
using System.Collections.Generic;
using System.IO;

public class ReadFile {
  public static void Main() {
    string FileToRead = @"D:\New folder\textfile.txt";
    // Creating enumerable object
    IEnumerable<string> line = File.ReadLines(FileToRead);
    Console.WriteLine(String.Join(Environment.NewLine, line));
  }
}

输出:

// All the text, the file contains will display here.

如果打开文件时出现问题,File.ReadLines() 方法将抛出 IOException;如果请求的文件不存在,则抛出 FileNotFoundException


使用 C# 中的 File.ReadAllLines() 方法逐行读取文本文件

File.ReadAllLines() 方法也可用于逐行读取文件。它不返回 Enumerable。它返回一个字符串数组,其中包含文本文件的所有行。

使用此方法的正确语法如下:

File.ReadAllLines(FileName);

示例代码:

using System;
using System.IO;

public class ReadFile {
  public static void Main() {
    string FileToRead = @"D:\New folder\textfile.txt";
    // Creating string array
    string[] lines = File.ReadAllLines(FileToRead);
    Console.WriteLine(String.Join(Environment.NewLine, lines));
  }
}

输出:

// All the text, the file contains will display here.

这个方法也抛出异常,就像 File.ReadLines() 方法一样。然后使用 try-catch 块来处理这些异常。


使用 C# 中的 StreamReader.ReadLine() 方法逐行读取文本文件

C# 中的 StreamReader 类提供了 StreamReader.ReadLine() 方法。此方法逐行将文本文件读取到末尾。

StreamReader.ReadLine() 方法的正确语法如下:

// We have to create Streader Object to use this method
StreamReader ObjectName = new StreamReader(FileName);
ObjectName.ReadLine();

示例代码:

using System;
using System.IO;

public class ReadFile {
  public static void Main() {
    string FileToRead = @"D:\New folder\textfile.txt";
    using (StreamReader ReaderObject = new StreamReader(FileToRead)) {
      string Line;
      // ReaderObject reads a single line, stores it in Line string variable and then displays it on
      // console
      while ((Line = ReaderObject.ReadLine()) != null) {
        Console.WriteLine(Line);
      }
    }
  }
}

输出:

// All the text, the file contains will display here.

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

C# 中的方法组

发布时间:2024/01/16 浏览次数:170 分类:编程语言

本文向我们介绍了 C# 中的方法组。C# 中的方法组 我们有时会遇到一个函数可能有多个实现的情况。

C# 将多个参数传递给 get 方法

发布时间:2024/01/16 浏览次数:175 分类:编程语言

本文的方法指南展示了在 C# 中将多个参数传递给 get 方法的不同方法。它介绍了控制器动作,属性路由和 [FromQuery]之类的方法。

C# 中的可选参数

发布时间:2024/01/16 浏览次数:78 分类:编程语言

本文介绍如何在 C# 中使方法参数成为可选参数。它包括默认值方法,重载方法和 Optional 属性。在 C# 中使用默认值方法使方法参数为可选参数

在 C# 中删除一个文件

发布时间:2024/01/16 浏览次数:81 分类:编程语言

File.Delete(path)函数可用于删除 C# 中指定路径内的文件。在 C# 中使用 File.Delete(path) 函数删除文件

在 C# 中检查文件是否存在

发布时间:2024/01/16 浏览次数:64 分类:编程语言

C# 中的 File.Exists()函数可以用来检查一个文件是否存在于特定路径中。使用 C# 中的 File.Exists(path) 函数检查文件是否存在于特定路径中

在 C# 中追加到文本文件

发布时间:2024/01/16 浏览次数:54 分类:编程语言

在 C# 中,有两种主要的方法可以用来向文本文件追加,即 File.AppendAllText()方法和 StreamWriter 类。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便