List<?> list = apphl04Service.selectList(apphl04VO);

egovMap으로 받은 리스트가 있을 경우 수정하는 방법


for (Object object : list) {

        int num = 0;

      //egovMap으로 형변환 

EgovMap map1 = (EgovMap)list.get(num);


//데이터에 접근하는 방법  

String loc = (String)map1.get("facImgLoc");

           String id = (String)map1.get("facImgId");


//데이터 저장 

  map1.put("img", renderImg);


}




+ Recent posts