I ve created a file using Java.io.File/FileInputStream/FileOutputStream. Now suppose that I want to change the value of some bytes in the file (for instance from the byte 15 to 35) whitout change the size of the file. I ve tried creating a RandomAccessFile object and then use RandomAccessFile.seek to move at the bytes number 15, writing my new bytes and then I ve close the file.. The file has changed its size.. What's wrong with this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Are you sure you are writing a byte to the RandomAccessFile? If you are calling the method:
Then it is actually writing
|
|||
|
|