Android - 将字符串添加到hashmap

时间:2011-04-06 00:34:03

标签: android string hashmap buffer

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

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

与您所询问的内容类似的示例:Using HashMap to map a String and int