Map结构取数据这个方法比Iterator和foreach效率稍高。

Map<String,Map<String,List<String>>> tempMap = songHighlight.getHighlighting();
			for(Map.Entry<String, Map<String,List<String>>> entry : tempMap.entrySet()) {
				if(Integer.parseInt(entry.getKey()) == song.getSong_SongID()) {
 
					for(Map.Entry<String, List<String>> entryLayer2 : entry.getValue().entrySet()) {
						if(null != entryLayer2.getKey() && "Song_Name".equals(entryLayer2.getKey())) {
							//your Operation
						}
						if(null != entryLayer2.getKey() && "Song_SingerName".equals(entryLayer2.getKey())) {
							//your Operation
						}
					}
				}
			}

你可能感兴趣的:(Map结构取数据这个方法比Iterator和foreach效率稍高。)