文件。C# 中的 ReadAllLines(字符串,编码)方法,示例

原文:https://www . geesforgeks . org/file-readalllinestring-encoding-method-in-c-sharp-with-examples/

文件。ReadAllLines(String,Encoding) 是一个内置的 File 类方法,用于打开一个文本文件,然后将文件的所有行读入一个具有指定编码的字符串数组,然后关闭文件。 语法:

public static string[] ReadAllLines (string path, System.Text.Encoding encoding);

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

  • Path: This is the specified file to open for reading.
  • Code: This applies to the contents of the file. ..

例外:

  • 参数异常:路径是一个零长度字符串,只包含空格或一个或多个无效字符,如 InvalidPathChars 所定义。
  • ArgumentNullException:路径为空。
  • 路径工具异常:指定的路径、文件名或两者都超过了系统定义的最大长度。
  • DirectoryNotFoundException:指定的路径无效。
  • IOException: 打开文件时出现输入/输出错误。
  • 未授权访问异常:路径指定了一个只读文件。或者当前平台不支持此操作。或者路径指定了一个目录。或者呼叫者没有所需的权限。
  • 文件未找到异常:路径中指定的文件未找到。
  • notSupportDexception:路径的格式无效。
  • 安全性异常:调用方没有所需的权限。

返回值:返回包含文件所有行的字符串数组。 以下是说明文件的程序。ReadAllLines(字符串,编码)方法。 程序 1: 最初创建一个文件 file.txt ,内容如下所示-

file.txt

C

// C# program to illustrate the usage
// of File.ReadAllLines(String, Encoding) method

// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;

class GFG {
    public static void Main()
    {
        // Specifying a file
        string path = @"file.txt";

        // Calling the ReadAllLines(String, Encoding) function
        string[] readText = File.ReadAllLines(path, Encoding.UTF8);
        foreach(string s in readText)
        {
            // Printing the string array containing
            // all lines of the file.
            Console.WriteLine(s);
        }
    }
}

输出:

GFG
Geeks
GeeksforGeeks

程序 2: 最初没有创建文件。下面代码自己创建一个文件 file.txt 带有一些指定的内容。

C

// C# program to illustrate the usage
// of File.ReadAllLines(String, Encoding) method

// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;

class GFG {
    public static void Main()
    {
        // Specifying a file
        string path = @"file.txt";

        // Adding below contents to the file
        string[] createText = { "GFG is a CS portal." };
        File.WriteAllLines(path, createText, Encoding.UTF8);

        // Calling the ReadAllLines(String, Encoding) function
        string[] readText = File.ReadAllLines(path, Encoding.UTF8);
        foreach(string s in readText)
        {
            // Printing the string array containing
            // all lines of the file.
            Console.WriteLine(s);
        }
    }
}

输出:

GFG is a CS portal.