2019-02-14 将hashmap转为list

HashMap toolUsedCountsMap =new HashMap<>();

toolUsedCountsMap.put("审计建模工具","0");

toolUsedCountsMap.put("审计联表查询工具","0");

toolUsedCountsMap.put("审计作业编辑工具","0");

toolUsedCountsMap.put("审计记录统计分析工具","0");

List countList =new ArrayList(toolUsedCountsMap.entrySet());

你可能感兴趣的:(2019-02-14 将hashmap转为list)