Tagged Questions
3
votes
5answers
532 views
Buffered vs non buffered, which one to use?
I am sorry if this is a duplicate but I was not able to find a definitive answer to what is the best practice for each type.
I would like to know what the appropriate conditions are that define when ...
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 ...
1
vote
1answer
58 views
Buffered Writer loads corrupt data when new file created
Basically, I'm trying to capture the accelerometer data into a txt file. The code writes the accel data into a string, and then updates everytime it changes which is often. I included a toggle button ...
-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 ...