我目前正在将一个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
不是很熟悉,但我想将字典中的文件读入哈希映射。
任何帮助都将不胜感激。