我正在迭代hashmap,但是迭代时这些奇怪的括号[]在那里,任何人都可以指导我如何摆脱它。
谢谢
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
}