2009年12月30日水曜日

StreamReaderClassのReadLineMethodを使用して、ファイルの内容を1行ずつ読み込んで出力する。

using System;
using System.IO;


class MainClass
{
    static void Main()
    {
        try
        {
            // usingステートメント
            using (StreamReader sr =
                new StreamReader("sample.txt",
                    System.Text.Encoding.Default))
            {
                string text = " ";
                // 1行読み込む
                while ((text = sr.ReadLine()) != null)
                {
                    // 読み込んだ1行を出力
                    Console.WriteLine(text);
                }
            }
        }
        catch (Exception error)
        {
            // 例外の原因の詳細情報を表示
            Console.WriteLine(error.Message);
        }
    }
}

0 コメント:

コメントを投稿