Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
4  
show us some code – unbeli Nov 19 '10 at 15:35
Yes, please show us a snippit of the code you are using. – jjnguy Nov 19 '10 at 15:37
2  
I assume you are not trying to use FileOutputStream AND RandomAccessFile at the same time. – Peter Lawrey Nov 19 '10 at 15:38
If you are using RandomAccessFile alone, the only way to change it is size is to use setLength(). Unless you are using that, the size shouldn't change. – Peter Lawrey Nov 19 '10 at 15:40
@Peter, if you write past the end, the size will increase also. – Marcus Adams Nov 19 '10 at 15:42
show 2 more comments

1 Answer

up vote 2 down vote accepted

Are you sure you are writing a byte to the RandomAccessFile? If you are calling the method:

file.write(35);

Then it is actually writing 35 as an int which is 4 bytes. If you want to write a single byte try:

file.writeByte(35);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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