Mit Java Inhalt einer Datei ausgeben

Posted: November 20th, 2008 | Filed under: Programmieren | Tags: , , , , | 4 Comments »

So jetzt noch einmal wieder ein bisschen Quellcode vor dem Schlafen gehen. Diesmal soll das Programm lediglich den Inhalt einer Datei auf der Konsole ausgeben.

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class FileWrite {
  public static void main(String[] args) {
    try {
      BufferedReader br = new BufferedReader(new FileReader(
          "C:/testdatei.txt"));
      String zeile;
      try {
        while ((zeile = br.readLine()) != null) {
          System.out.println(zeile);
        }
      catch (IOException e) {
        e.printStackTrace();
      }
    catch (FileNotFoundException e1) {
      e1.printStackTrace();
    }
  }
}

4 Comments on “Mit Java Inhalt einer Datei ausgeben”

  1. 1 EEEEEEEEE EE said at 09:17 on November 14th, 2019:

    E

  2. 2 oooooooooooo said at 17:04 on März 2nd, 2020:

    o

  3. 3 AAAAaA aa said at 17:04 on März 2nd, 2020:

    A

  4. 4 IIIIIIIIIiiIIIIi said at 10:23 on Januar 10th, 2022:

    I


Leave a Reply