怎么样把map的值输出出来,试了两种方法都不行 ,如果值是集合或者把数组弄到集合里去可行,我想纯数组输出,有没有技巧,求大牛。
3 回答
yanrun
TA贡献317条经验 获得超240个赞
Map<String, String[]> location = new HashMap<>(); String[] sh = new String[]{"徐汇", "长宁","普陀", "闸北", "虹口"}; location.put("上海", sh); for(Map.Entry<String, String[]> entry : location.entrySet()) { System.out.println(entry.getKey() + "\t" + Arrays.asList(entry.getValue()).toString()); }
添加回答
举报
0/150
提交
取消