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:路径为null。
- DirectoryNotFoundException:路径无效。
- FileNotFoundException:找不到由路径指定的文件。
- IOException:打开文件时发生I / O错误。
- PathTooLongException:路径超出了系统定义的最大长度。
- SecurityException:调用者没有所需的权限。
- UnauthorizedAccessException:该路径指定一个只读文件。或当前平台不支持此操作。或路径是目录。或呼叫者没有所需的权限。
返回值:返回指定文件的所有行。
下面是说明File.ReadLines(String,Encoding)方法的程序。
程序1:最初,将创建一个文件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 ,其内容如下所示-
下面的代码从文件中过滤掉一些内容,然后将它们打印回去。
// 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