HOW TO:從文字檔讀取 (C# 程式設計手冊)
這個範例會讀取文字檔的內容使用 System.IO.File 類別的靜態方法 ReadAllText 和 ReadAllLines 。
如需使用 StreamReader 的範例,請參閱 HOW TO:一次一行讀取文字檔 (Visual C#)。
注意事項 |
---|
這個範例中所用的檔案是在主題中 HOW TO:寫入文字檔 (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# 主控台應用程式。
如果您不使用 HOW TO:寫入文字檔 (C# 程式設計手冊)的文字檔,請取代電腦上的引數傳遞至 ReadAllText 和 ReadAllLines 用適當的路徑和檔案名稱。
穩固程式設計
下列情形可能會造成例外狀況 (Exception):
- 檔案不在指定的位置上沒有或不存在。 檢查路徑和檔案名稱的拼字。
安全性
不要依靠檔案名稱來判斷檔案內容。 例如,檔案 myFile.cs 可能不是 C# 原始程式檔。