当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# File.ReadLines(String, Encoding)用法及代码示例


File.ReadLines(String, Encoding) 是一个内置的 File 类方法,用于读取具有指定编码的文件的行。

用法:

public static System.Collections.Generic.IEnumerable ReadLines (string path, System.Text.Encoding encoding);

参数:此函数接受两个参数,如下所示:

  • path: This is the specified file for reading.
  • encoding: This encoding is applied to the contents of the file.

异常:



  • ArgumentException:路径是一个零长度的字符串,只包含空格,或者一个或多个由 GetInvalidPathChars() 方法定义的无效字符。
  • ArgumentNullException:路径为空。
  • DirectoryNotFoundException:路径无效。
  • FileNotFoundException:找不到路径指定的文件。
  • IOException:打开文件时发生I /O错误。
  • PathTooLongException:路径超过 system-defined 最大长度。
  • SecurityException:调用者没有所需的权限。
  • UnauthorizedAccessException:该路径指定一个只读文件。或者当前平台不支持此操作。或路径是目录。或调用者没有所需的权限。

返回值:返回指定文件的所有行。

下面是说明 File.ReadLines(String, Encoding) 方法的程序。

程序1:最初,创建了一个文件 file.txt,其中的一些内容如下所示-

file.txt


// C# program to illustrate the usage
// of File.ReadLines(String, Encoding) method
  
// Using System, System.IO
// and System.Text namespaces
using System;
using System.IO;
using System.Text;
  
public class GFG {
    public static void Main(String[] argv)
    {
        // Calling the ReadLines(String, Encoding) function
        foreach(string line in File.ReadLines(@"file.txt", Encoding.UTF8))
        {
            // Printing the file contents
            Console.WriteLine(line);
        }
    }
}

输出:

GFG
gfg
Geeks
GeeksforGeeks
geeksforgeeks

程序2:最初,创建了一个文件 file.txt,其中的一些内容如下所示-

file.txt

下面的代码从文件中过滤掉一些内容,然后将它们打印回去。


// C# program to illustrate the usage
// of File.ReadLines(String, Encoding) method
  
// Using System, System.IO
// and System.Text namespaces
using System;
using System.IO;
using System.Text;
  
public class GFG {
    public static void Main(String[] argv)
    {
        // Calling the ReadLines(String, Encoding) function
        foreach(string line in File.ReadLines(@"file.txt", Encoding.UTF8))
        {
            // Filtering the file contents and printing
            if (line.Contains("GFG")) {
                Console.WriteLine(line);
            }
        }
    }
}

输出:

GFG



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.ReadLines(String, Encoding) Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。