방법: 텍스트 파일에서 읽기(C# 프로그래밍 가이드)
정적 메서드를 사용 하 여이 예제 텍스트 파일의 내용을 읽어 ReadAllText 및 ReadAllLines 에서 System.IO.File 클래스입니다.
StreamReader을 사용하는 예제를 보려면 방법: 텍스트 파일을 한 번에 한 줄씩 읽기(Visual C#)을 참조하십시오.
[!참고]
이 예제에서 사용 되는 파일에서 만들어진 방법: 텍스트 파일에 쓰기(C# 프로그래밍 가이드).
예제
class ReadFromFile
{
static void Main()
{
// The files used in this example are created in the topic
// How to: Write to a Text File. You can change the path and
// file name to substitute text files of your own.
// Example #1
// Read the file as one string.
string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt");
// Display the file contents to the console. Variable text is a string.
System.Console.WriteLine("Contents of WriteText.txt = {0}", text);
// Example #2
// Read each line of the file into a string array. Each element
// of the array is one line of the file.
string[] lines = System.IO.File.ReadAllLines(@"C:\Users\Public\TestFolder\WriteLines2.txt");
// Display the file contents by using a foreach loop.
System.Console.WriteLine("Contents of WriteLines2.txt = ");
foreach (string line in lines)
{
// Use a tab to indent each line of the file.
Console.WriteLine("\t" + line);
}
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
}
}
코드 컴파일
코드를 복사 하 여 C# 콘솔 응용 프로그램에 붙여넣습니다.
텍스트 파일에서 사용 하는 경우 방법: 텍스트 파일에 쓰기(C# 프로그래밍 가이드), 교체에 대 한 인수 ReadAllText 및 ReadAllLines 컴퓨터에 적절 한 경로 및 파일 이름으로.
강력한 프로그래밍
다음 조건에서 예외가 발생할 수 있습니다.
- 파일이 존재 하지 않거나 지정한 위치에 존재 하지 않습니다.경로 파일 이름이 올바른지 확인 하십시오.
보안
파일의 내용을 확인 하기 위해 파일 이름에 의존 하지 않습니다.예를 들어, 파일 myFile.cs C# 소스 파일이 아닐 수도 있습니다.