В настоящее время я читаю dictionary.png (текстовый файл) в буфер.
.png, чтобы заставить Android думать, что он сжат.
InputStream is = getResources().openRawResource(R.raw.dictionary);
try {
BufferedReader br = new BufferedReader(new InputStreamReader(is, "UTF8"));
String next;
while ((next = br.readLine()) != null) {
//Add the string next to a map or whatever
}
} catch (Exception e) {
//Something nasty happened
}
Я не очень знаком с HashMaps
, но я хочу прочитать файлы из словаря в хэш-карту.
Любая помощь будет оценена.