HashMap遍历

 HashMap map = new HashMap();

map.put("english_name", english_name);

map.put("corp_resume", corp_resume);

map.put("image_url", image_url);

map.put("doorplate_no", doorplate_no);

 

Set set = map.keySet();

for(Iterator it=set.iterator();it.hasNext();){

String value = (String)it.next();

        }

 

 

本文出自 “艰难困苦 玉汝于成” 博客,谢绝转载!

你可能感兴趣的:(HashMap,职场,休闲)