I am reading a huge txt file inside zip.
GZIPInputStream fstream = new GZIPInputStream(new FileInputStream(zipfile));
BufferedReader breader = new BufferedReader(new InputStreamReader(fstream));
I need to read last n lines, of the file.
Is it possible to do that without readline until eof?