2011-04-06 75 views
0

我正在讀取一個dictionary.png(這是一個文本文件)到一個緩衝區。 .png使android認爲它是壓縮的。Android - 向hashmap添加字符串

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,但我想從字典中的文件讀入一個哈希映射。

任何幫助,將不勝感激。

回答