try{ DataInput load = new DataInputStream (new FileInputStream("hs.txt")); String line; int a=0; while ((line=load.readLine()) !=null) { ...//Verarbeiten } load.close();} catch (IOException e) { System.out.print(" "+e);}