Java中 map.values转换为list或者string[]

Posted 嗨哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中 map.values转换为list或者string[]相关的知识,希望对你有一定的参考价值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@Test
public void testMap2List() throws Exception{
    Map<String, String> map = new HashMap<String, String>();
    map.put("1""AA");
    map.put("2""BB");
    map.put("3""CC");
    map.put("4""DD");
 
    Collection<String> valueCollection = map.values();
    final int size = valueCollection.size();
 
    List<String> valueList = new ArrayList<String>(valueCollection);
 
    String[] valueArray = new String[size];
    map.values().toArray(valueArray);
}

原文地址   https://www.cnblogs.com/hqbhonker/p/5196359.html

以上是关于Java中 map.values转换为list或者string[]的主要内容,如果未能解决你的问题,请参考以下文章

Java中 map.values转换为list或者string[]

List和Map之间的转换和关联

Java实现Map转List

java如何将json的数据转换为map或者list类型的?

Java中怎么遍历map中value值

java中map怎么输出!