14 Mayıs 2010 Cuma

C# da Text Dosyadan Okuma İşlemi (Listeleme)

string ad, soyad, tel, yol, yol2;
FileStream dosya, dosya2;

private void Form1_Load(object sender, EventArgs e)
{
yol = Application.StartupPath + "\\telefon.txt";
yol2 = Application.StartupPath + "\\gecici.txt";
}

private void button2_Click(object sender, EventArgs e)
{
dosya = new FileStream(yol, FileMode.OpenOrCreate, FileAccess.Read);
StreamReader okuma;
okuma = new StreamReader(dosya);
listBox1.Items.Clear();
listBox2.Items.Clear();
listBox3.Items.Clear();
do
{
ad = okuma.ReadLine();
soyad = okuma.ReadLine();
tel = okuma.ReadLine();

if (ad != null)
{
listBox1.Items.Add(ad);
listBox2.Items.Add(soyad);
listBox3.Items.Add(tel);
}
}
while (ad != null); //Şart sağlandığı sürece döngü çalışır.
okuma.Close();
}

Hiç yorum yok:

Yorum Gönder