Is it possible to work with I/O-files that're >=16MB on Android? Currently I'm using the new Java NIO-API (FileChanel), split the array using System.arraycopy and put the chunks into a collection. If the files is >= 16MB, the thread throws an OutOfMemoryError.
Any suggestions? The normal I/O-API was way to slow.
Thanks in advance.