tags:

views:

26

answers:

1

Can I have random file access to a file bundled in my Android aplication? I don't want to copy the file from apk to the sdcard.

+1  A: 

No, you can't: http://stackoverflow.com/questions/3681665/how-to-get-a-path-to-resources/3722556#3722556 . If you don't want to copy a file to sdcard, you could read it fully to a memory buffer and work with this buffer.

Brutall