Java Dosya Okuma

Proje içinde bulunan Graf.txt dosyasını okuyan program
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;

public class DosyadanOku {

    public static void main(String[] args) throws IOException {

        File file = new File("graf.txt");
        BufferedReader reader = null;
        reader = new BufferedReader(new FileReader(file));
        String satir = reader.readLine();

            while (satir!=null) {
            	System.out.println(satir);
                satir = reader.readLine();
            }

		}}


Ekran Çıktısı
 a b 1
 a f 6
 a g 12
 b c 2
 b g 8
 c d 3
 c h 9
 e d 4
 f e 5
 f g 7
 g h 11
« »