vote up 2 vote down star

Hi, I'm writing bytes to temp.fls file. After completing the operation, I want to delete the last 256 bytes from the temp.fls file. How can I achieve this? Please help me.

Thanks in advance.

flag

1 Answer

vote up 8 vote down

Use RandomAccessFile.setLength() like so:

RandomAccessFile f = new RandomAccessFile(yourFile,"rw");
f.setLength(f.length()-256);
link|flag
plz give me some sample code – rekha Apr 29 at 5:33
@rekha: spdenne gave you a link to the API documentation. Have a look at it and also at the constructor. – boutta Apr 29 at 5:39

Your Answer

Get an OpenID
or

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