Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张地图:
Map<Object,List<Object>> values=new HashMap<Object,List<Object>>();
和列表是:
List<Object> ls=new ArrayList<Object>();
如何将 Map(values) 转换为 List(ls),我必须在 jsp 中显示列表值迭代器。
这将为您提供 Map 条目的列表:
List<Map.Entry<Key, Value>> list = new ArrayList<Map.Entry<Key, Value>>(map.entrySet());
仅供参考,条目有一个 getKey() 和一个 getValue() 方法。