2019-02-14 将hashmap转为list
2019-02-14 本文已影响0人
小白修仙之路
HashMap toolUsedCountsMap =new HashMap<>();
toolUsedCountsMap.put("审计建模工具","0");
toolUsedCountsMap.put("审计联表查询工具","0");
toolUsedCountsMap.put("审计作业编辑工具","0");
toolUsedCountsMap.put("审计记录统计分析工具","0");
List countList =new ArrayList(toolUsedCountsMap.entrySet());