我已将键,值放在地图中,
map.put(id,list);
id = 5 和
此列表包含的值为 ,
A
OR A,B,
OR A,B,C
OR sometimes no values.
我正在遍历地图,
Iterator itr=map.entrySet().iterator();
while(itr.hasNext()){
Map.Entry me=(Map.Entry)itr.next();
int key =(Integer)me.getKey();
List li = (List)me.getValue();
System.out.println(key,li);
}
我想 system.out.println 像单行一样,
5 | A | (if list contain A)
5 | A | B | (if list contain A,B)
5 | A | B | C | (if list contain A,B,C)
5 (only 5 if there are no values as A B C)
我不确定如何从列表中删除逗号并在单行的单独列中显示列表值,如上?