I want the result byte[] to be exactly as long as the file content. How to achieve that.
I am thinking of ArrayList<Byte>, but it doe not seem to be efficient.
|
|
|
Personally I'd go the Guava route:
Apache Commons IO has similar utility methods if you want. If that's not what you want, it's not too hard to write that code yourself:
|
|||||
|
|
I'm pretty sure File#length() doesn't iterate through the file. (Assuming this is what you meant by |
|||||
|
|
Allocate an adequate buffer (if necessary, resize it while reading) and keep track of how many bytes read. After finishing reading, create a new array with the exact length and copy the content of the reading buffer. |
|||
|
|
|
Small function that you can use :
|
|||||
|