首页 > 学院 > 开发设计 > 正文

遍历List<Map<String, Object>>

2019-11-14 11:46:25
字体:
来源:转载
供稿:网友
import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;public class Client { public static void main(String[] args) { //HashMap无序,TreeMap有序 Map<String, Object> map = new HashMap<String, Object>(); map.put("AR01", "hello"); map.put("AR02", 2017); map.put("AR03", "world"); map.put("AR04", 1000); List<Map<String, Object>> testList = new ArrayList<Map<String, Object>>(); testList.add(map); for (Map<String, Object> m : testList) { for (String k : m.keySet()) { System.out.PRintln(k + " : " + m.get(k)); } } }}输出结果:AR03 : worldAR04 : 1000AR01 : helloAR02 : 2017
上一篇:struts2值栈分析

下一篇:http基础教程

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表