What is the best way to convert a java.io.File to a byte[]?
|
|
It depends of what best means for you. Productivity wise, don't reeinvent the wheel and use Jakarta commons IOUtils.toByteArray(InputStream input) |
||||
|
|
|
Let me add another solution without using third-party libraries. It re-uses an exception handling pattern that was proposed by Scott (link). And I moved the ugly part into a separate message (I would hide in some FileUtils class ;) )
|
||
|
|
|
|
Basically you have to read it in memory. Open the file, allocate the array, an read the contents from the file into that array. The simplest way is something similar to this:
This has some unnecessary copying of the file content (actually the data is copied three times: from file to buffer, from buffer to BAOS, from BAOS to the actual resuting array). You also need to make sure you read in memory only files up to a certain size (this is usually application dependent) :-). You also need to treat the IOException outside the function. Another way is this:
This has no unnecessary copying. FileTooBigException is a custom application exception. The MAX_FILE_SIZE constant is an application parameters. For big files you should probably think a stream processing algorithm or use memory mapping (see java.nio). |
|||
|
|
|
|
As someone said, Apache Commons File Utils might have what you are looking for
|
||
|
|
|
|
You can use the NIO api as well to do it. I could do this with this code as long as the total file size (in bytes) would fit in an int.
I think its very fast since its using MappedByteBuffer. |
||||||||||||
|
|
|
|
||||||||||||
|
