0

How to replace the contents of a file in android sd card at the offset or with the same size as that of the size of a file which already had contents

4

1 回答 1

0

你也可以使用RandomAccessFile

RandomAccessFile raf = new RandomAccessFile(yourfile, "rw");
raf.seek(theStartingPosition)
raf.write(...)
于 2013-05-21T07:39:11.067 回答