My app uses some keys to search a large file (about 100MB) to retrieve some results.
This file content (keys/values) are known, read-only and to be distribution with the apk.
I need some advice:
1) I plan to use DButils but since it is read-only should I consider RandomAccessFile ?
Would it be faster ?
2) If I use RandomAccessFile, how do I populate during development and then deploy it ?
3) If I use DButils, can I load it using PC-based mySQL then export the SQL file to Android ?
Thanks.
This file content (keys/values) are known, read-only and to be distribution with the apk.
I need some advice:
1) I plan to use DButils but since it is read-only should I consider RandomAccessFile ?
Would it be faster ?
2) If I use RandomAccessFile, how do I populate during development and then deploy it ?
3) If I use DButils, can I load it using PC-based mySQL then export the SQL file to Android ?
Thanks.