just trying to sort out a small delimma I'm having here.
Currently, I'm working on an application that involves gathering a list of files into memory, to be deleted. Now, at this point, I thought that a java.io.File array would perhaps take up too much memory, since the list of Files in this context could be in the hundreds of possible entries.
Rather than eat excessive amounts of memory up with a list of File objects, I figured that gathering a list of filenames and storing them as a java.lang.String would be cheaper to memory. Now, here's my problem: With the goal in mind that these files are to be deleted, which of these would be cheaper:
- Storing an array of File objects rather than String objects, and calling .delete(); on each one in a loop (too much memory used).
- Storing an array of String objects with the filenames, but for each iteration of the loop, create a new File object using the list of filenames, and call .delete(); on that file (which means each time the loop iterates, a new File object is created and destroyed--possibly too much processor power being used).
I want to make the program as fast as possible, so either approach has its merits, and I just want to see which of these has the least overhead. Thanks in advance!
Filearray takes up too much memory? Java'sFileobjects have more than zero size, of course, but they're only references to filesystem locations. They doesn't implicitly transfer the contents of files into your program. – Lord Torgamus May 10 '11 at 15:48Filearray, unless post-deployment benchmarking shows that there's an issue with that approach. Thanks. – wpreston May 10 '11 at 20:57