HOW TO:讀取文字檔 (C++/CLI)
下列程式碼範例示範如何同時開啟和讀取文字檔一行,使用 System.IO 命名空間中定義的 StreamReader 類別。範例會使用這個類別的執行個體來開啟文字檔案,然後使用 StreamReader.ReadLine 方法來擷取每一行。
這個程式碼範例會讀取名為 textfile.txt,並包含文字的檔案。如需這個檔案的詳細資訊,請參閱 HOW TO:寫入文字檔 (C++/CLI)。
範例
// text_read.cpp
// compile with: /clr
#using<system.dll>
using namespace System;
using namespace System::IO;
int main()
{
String^ fileName = "textfile.txt";
try
{
Console::WriteLine("trying to open file {0}...", fileName);
StreamReader^ din = File::OpenText(fileName);
String^ str;
int count = 0;
while ((str = din->ReadLine()) != nullptr)
{
count++;
Console::WriteLine("line {0}: {1}", count, str );
}
}
catch (Exception^ e)
{
if (dynamic_cast<FileNotFoundException^>(e))
Console::WriteLine("file '{0}' not found", fileName);
else
Console::WriteLine("problem reading file '{0}'", fileName);
}
return 0;
}