文件。C# 中的 ReadLines(字符串,编码)方法,示例
原文:https://www . geesforgeks . org/file-readline string-encoding-method-in-c-sharp-with-examples/
文件。readline(String,Encoding) 是一个内置的 File 类方法,用于读取具有指定编码的文件的行。
语法:
公共静态系统。集合。泛型。Generic.IEnumerable ReadLines(字符串路径,系统。文本.编码编码);
参数:该函数接受两个参数,如下图所示:
- Path: This is the specified file to be read.
- Code: This code is applied to file content.
异常:
- ArgumentException:路径是一个零长度字符串,只包含空格,或者一个或多个由 GetInvalidPathChars()方法定义的无效字符。
- ArgumentNullException:路径为空。
- DirectoryNotFoundException:路径无效。
- 文件未找到异常:未找到由路径指定的文件。
- IOException: 打开文件时出现输入/输出错误。
- 路径工具异常:路径超过了系统定义的最大长度。
- 安全性异常:调用方没有所需的权限。
- 未授权访问异常:路径指定了一个只读文件。或者当前平台不支持此操作。或者路径是一个目录。或者呼叫者没有所需的权限。
返回值:返回指定文件的所有行。
下面是说明文件的程序。ReadLines(字符串,编码)方法。
程序 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
版权属于:月萌API www.moonapi.com,转载请注明出处