Java - Simple way to put LinkedHashMap keys/values into respective Lists?

后端 未结 3 1392
-上瘾入骨i
-上瘾入骨i 2021-02-18 23:33

I have a LinkedHashMap < String, String > map .

List < String > keyList;
List < String > valueList;

map.keySet();
map.values();
<         


        
3条回答
  •  抹茶落季
    2021-02-18 23:48

    For sure!

    keyList.addAll(map.keySet());
    

    Or you could pass it at the time of creation as well

    List keyList = new ArrayList(map.KeySet());
    

    http://download.oracle.com/javase/1.4.2/docs/api/java/util/ArrayList.html

提交回复
热议问题