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


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


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

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

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

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

异常:

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

返回值:返回包含文件所有行的字符串数组。
下面是说明 File.ReadAllLines(String, Encoding) 方法的程序。
程序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.



相关用法


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