import java.io.*; public class ReaderTest { public static void main(String[] args) { try { String path = "/Users/zaferteker/Private/Books/Documents/TestFile.txt"; FileReader fr = new FileReader(path); // Tamponlama için BufferedReader kullanılacak. BufferedReader br = new BufferedReader(fr); String line = ""; // Tüm okuma satır satır yapılıyor while ((line = br.readLine()) != null) { System.out.println(line); } } catch (Exception e) { e.printStackTrace(); } } }Dosyayı İndir