InputStream
is=getAssets().open("fileName.extension");
byte[] fileBytes=new byte[is.available()];
is.read(
fileBytes);
is.close();
Now you edit the byte array as you want, and you can create original file with the current bytes if it was encrypted
Mohammad Abu Hmead
No comments:
Post a Comment