Java中for循环嵌套分层封装数据简章

for循环中迭代多层数据,代码如下:

//第一层遍历
List> listAll = new ArrayList<>();   //第一层的list
Map mapAll = new HashMap<>();   //第一层的map

for (Map Tmap1 : list1) {
		code1 = (String)Tmap1.get("code1");
		name1 = (String)Tmap1.get("name1");
		
		mapAll = new HashMap<>();                                      //实例化第一层的map
		listAll.add(mapAll);                                           //将第一层的空map添加到第一层的空list
		
		List> list2 = new ArrayList<>();           //第二层的list
		Map map2 = null;                               //第二层的map
		mzyyMap.put("data", list2);                                    //将第二层的list放到第一层的map中
		mzyyMap.put("label", name1);
		mzyyMap.put("code", code1);
		
		//第二层遍历
		for (Map TMap2 : depList) {
			code2 = (String)TMap2.get("code2");
			name2 = (String)TMap2.get("name2");
			
			TCode = (String)TMap2.get("code1");
			
			List> list3 = new ArrayList<>();
			Map map3 = null;
			
			if (code1.equals(TCode)) {
				map2 = new HashMap<>();               //每次初始化这层的map
				list2.add(map2);                      //将这层的map加入这层的list

				map2.put("data", list3);              //将下一层的list加入这层的map
				map2.put("label", name2);
				map2.put("code", code2);
			}
			
			//第三层遍历
			for (Map TMap3 : TypeList) {
				code3 = (String)TMap3.get("code3");
				name3 = (String)TMap3.get("name3");
				
				TCode1 = (String)TMap3.get("code3");
				
				if (code3.equals(TCode1)) {
					
					List> list4 = new ArrayList<>();
					Map map4 = null;
					
					map3 = new HashMap<>();
					list3.add(map3);
					map3.put("data", list4);
					map3.put("label", name3);
					map3.put("code", code3);
					
					//数据遍历
					if (dataList.size() > 0) {
						for (Map dataMap : dataList) {
							
							map4 = new HashMap<>();
							list4.add(map4);
							
							dateTime = (String)dataMap.get("DATAGENERATE_DATE");
							
							String serviceName = (String)dataMap.get("groupKey");
							
							if (serviceName.equals("aaa")) {
								map4.put("label", "测试数据");
								map4.put("count", dataMap.get("count"));
								map4.put("code", serviceName);
								map4.put("dateTime", dateTime);
							}
						}
					}
				}
			}
		}
	}

如此在for循环中创建map,然后put数据到map中,也可解决每次循环结束数据覆盖只会加进去一条数据的问题。因为每次都时创建一个新的map。解决for循环put数据覆盖的另一种办法是每次put的key值都是不同的,就不会有覆盖的问题,可以用返回数据中的一个值去当成key值使用。

你可能感兴趣的:(java)