猿问

求大牛, 有关map 的问题

    怎么样把map的值输出出来,试了两种方法都不行 ,如果值是集合或者把数组弄到集合里去可行,我想纯数组输出,有没有技巧,求大牛。

http://img.mukewang.com/589bcf8a0001eb5203710054.jpg

慕粉1827378811
浏览 1363回答 3
3回答

yanrun

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()); }
随时随地看视频慕课网APP

相关分类

Java
我要回答