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
5answers
108 views

Java app breaks 10% of the time

I have an app that uses a 2400x1800 buffered Image (which I know it takes a lot of resources), but it works perfectly more than 90% of the time. Takes 130 mb of RAM and uses 5% of CPU. The problem ...
0
votes
2answers
697 views

Sending buffered data through a socket from Android

I develop the first part of an Android application that allows to broadcast video stream through the network. Currently, I'm sending the video in a very direct way, like this: Socket socket = new ...
-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 ...