I am looking for an efficient way to create a file whose size is unknown but can range from mb's to gb's and fill its content randomly. I may write first 200 bytes than jump to the end and write last 200 bytes and move to the middle and write there. Is RandomAccessFile efficient for doing this or are there any alternatives better suited for this kind of job?
|
|
||||
|
|
|
Yes, use Note that you won't be able to "insert in the middle" of the file after writing the end part: I don't know any file system which supports that. You'll need to know the complete size before you write the final section, basically. An alternative would be to write sequentially, remembering the final bit until the end. If you can give us more information about what you need to do (and when you have information about the size) we may be able to help you more. EDIT: To create the file with a specific size,you can
After this has exited, EDIT: As coobird mentioned in the comments, |
|||||||||||||
|