Replacing contents of file in android sd card at an offset -


how replace contents of file in android sd card @ offset or same size of size of file had contents

with

you can use randomaccessfile

randomaccessfile raf = new randomaccessfile(yourfile, "rw"); raf.seek(thestartingposition) raf.write(...) 

Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -