vote up 0 vote down star
1

What is the best way to write bytes in the middle of a file using Java?

flag

4 Answers

vote up 5 vote down

Use RandomAccessFile

link|flag
vote up 2 vote down check

Reading and Writing in the middle of a file is as simple as using a RandomAccessFile in Java.

RandomAccessFile, despite its name, is more like an Input and OutputStream and less like a File. It allows you to read or seek through bytes in a file and then begin writing over whichever bytes you care to stop at.

Once you discover this class, it is very easy to use if you have a basic understanding of regular file i/o.

A small example:

public static void aMethod(){
    RandomAccessFile f = new RandomAccessFile(new File("whereDidIPutTHatFile"), "rw");
    long aPositionWhereIWantToGo = 99;
    f.seek(aPositionWhereIWantToGo); // this basically reads n bytes in the file
    f.write("Im in teh fil, writn bites".getBytes());
    f.close();
}
link|flag
vote up 0 vote down

Open the file in write mode without truncating it, seek to the desired offset, and write the desired data. Just be careful about text/binary mode.

link|flag
vote up -1 vote down

this wont overwrite na..only it will add to the current contents...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.