我正在迭代hashmap,但這些奇怪的括號[]在那裏迭代,任何機構可以指導我如何擺脫它。具有「[」「]」這些符號在Java中的哈希圖
感謝
Iterator it = map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pairs = (Map.Entry)it.next();
System.out.println(pairs.getKey() + " = " + pairs.getValue());
Log.v("Pairs get key", pairs.getKey().toString());
Log.v("Pairs get value", pairs.getValue().toString());
mysection.add(pairs.getKey().toString());
temp.add(pairs.getValue().toString());
it.remove(); // avoids a ConcurrentModificationException
}
對不起,你還沒有提供足夠的詳細信息。代碼示例和示例輸出將會很有幫助。 –
你能發佈你正在使用的代碼嗎?哈希映射在轉換爲字符串時有括號括起來。 – Vulcan
括號內的一些上下文將大有幫助。請粘貼包含這些括號的行 –