I want to read a binary file that its size is 5.5 megabyte(a mp3 file). I tried it with fileinputstream but it took many attempts. If possible, I want to read file with a minimal waste of time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Try this:
A more reliable version based on helpful comment from @Paul Cager & Liv related to available's and read's unreliability.
|
|||||||||||||||||||||
|
|
You should try to use a BufferedInputStream around your FileInputStream. It will improve the performance significantly.
Furthermore, I'd recommend to use the read-method that takes a byte array and fills it instead of the plain read. |
|||||||||
|
|
There are useful utilities in FileUtils for reading a file at once. This is simpler and efficient for modest files up to 100 MB.
|
|||
|
|