Tagged Questions

2
votes
2answers
1k views

Efficient way of handling file pointers in Java? (Using BufferedReader with file pointer)

I have a log file which gets updated every second. I need to read the log file periodically, and once I do a read, I need to store the file pointer position at the end of the last line I read and in ...
0
votes
0answers
153 views

Buffered Reader/Writer VS Buffered Input/Output Stream to transfer files via FTP

I have been reading on URL and URLConnection and I know that both Buffered InputStream/OutputStream (for character streams) and, Buffered Reader/Writer (for byte streams) can be used to transfer the ...
-1
votes
3answers
3k views

Buffered Reader readLine() with Empty lines

I am using buffered reader to grab a line at a time from a text file. I am trying to also get the line number from the text file using a tracking integer. Unfortunately BufferedReader is skipping ...