While googling, I see that using java.io.File.length() can be slow.
FileChannel has a size() method that is available as well.
Is there an efficient way in java to get the file size?
|
|
|||||||||||
|
|
|
Well, I tried to messure it up with the code below: For runs = 1 and iterations = 1 the URL method is fastest most times followed by channel. I runned this with some pause fresh about 10 times. So for one time access, using the URL is the fastest way I can think of:
For runs = 5 and iterations = 50 the picture draws different.
File must be caching the calls to the filesystem, while channels and URL have some overhead. Hope this helped out, Greetz GHad Code:
|
||||||||
|
|
|
Measure it first - is it really slow for you in your particular circumstances? No point going off on a wild goose chase if it's not causing a problem! |
||
|
|
|
This is kinda an off the wall solution. If you can capture the output of a ls or dir command from a system call and then parse it out from there. That seems like it would be fairly fast. Write a function in a static library Called QuickFileSize and then share it with us. Again, just throwing the idea out there. |
||
|
|
|
When I modify your code to use a file accessed by an absolute path instead of a resource, I get a different result (for 1 run, 1 iteration, and a 100,000 byte file -- times for a 10 byte file are identical to 100,000 bytes) LENGTH sum: 33, per Iteration: 33.0 CHANNEL sum: 3626, per Iteration: 3626.0 URL sum: 294, per Iteration: 294.0 |
|||
|
|
|
|
The benchmark given by GHad measures lots of other stuff (such as reflection, instantiating objects, etc.) besides getting the length. If we try to get rid of these things then for one call I get the following times in microseconds: file sum: 19.0, per Iteration: 19.0 raf sum: 16.0, per Iteration: 16.0 channel sum: 273.0, per Iteration: 273.0 For 100 runs and 10000 iterations I get: file sum: 1767629.0, per Iteration: 1.7676290000000001 raf sum: 881284.0, per Iteration: 0.8812840000000001 channel sum: 414286.0, per Iteration: 0.414286 I did run the following modified code giving as an argument the name of a 100MB file.
|
||||
|
|
|
In response to rgrig's benchmark, the time taken to open/close the FileChannel & RandomAccessFile instances also needs to be taken into account, as these classes will open a stream for reading the file. After modifying the benchmark, I got these results for 1 iterations on a 85MB file:
For 10000 iterations on same file:
If all you need is the file size, file.length() is the fastest way to do it. If you plan to use the file for other purposes like reading/writing, then RAF seems to be a better bet. Just don't forget to close the file connection :-)
|
||
|
|