View Single Post
  #17 (permalink)  
Old 10-07-2008, 07:35 AM
Asset Asset is offline
Member
 
Join Date: Oct 2008
Posts: 3
Asset is on a distinguished road
Quote:
Originally Posted by Eranga View Post
There are solutions, read the complete thread.
rrrrrrrr
Don Cash:

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

FileInputStream in = new FileInputStream("file.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(in));

String strLine = null, tmp;

while ((tmp = br.readLine()) != null)
{
strLine = tmp;
}

String lastLine = strLine;
System.out.println(lastLine);

in.close();
}


but if i have 10000 lines it will make more than 10000 operations
its bad..
Reply With Quote