Map<String, String> map = new HashMap<String, String>();
map.put("key1", "value1");
map.put("key2", "value2");
map.put("key3", "value3"); //第一种:普遍使用,二次取值
System.out.println("通过Map.keySet遍历key和value:");
for (String key : map.keySet()) {
System.out.println("key= "+ key + " and value= " + map.get(key));
} //第二种
System.out.println("通过Map.entrySet使用iterator遍历key和value:");
Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, String> entry = it.next();
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
} <span style="color:#FF0000;"> //第三种:推荐,尤其是容量大时</span>
System.out.println("通过Map.entrySet遍历key和value");
for (Map.Entry<String, String> entry : map.entrySet()) {
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
} //第四种
System.out.println("通过Map.values()遍历所有的value,但不能遍历key");
for (String v : map.values()) {
System.out.println("value= " + v);
}
public class HashMapAdapter extends BaseAdapter {

    private HashMap<String, String> mData = new HashMap<String, String>();
private String[] mKeys;
public HashMapAdapter(HashMap<String, String> data){
mData = data;
mKeys = mData.keySet().toArray(new String[data.size()]);
} @Override
public int getCount() {
return mData.size();
} @Override
public Object getItem(int position) {
return mData.get(mKeys[position]);
} @Override
public long getItemId(int arg0) {
return arg0;
} @Override
public View getView(int pos, View convertView, ViewGroup parent) {
String key = mKeys[pos];
String Value = getItem(pos).toString(); //do your view stuff here return convertView;
}
}

最新文章

  1. [LeetCode] Longest Increasing Path in a Matrix 矩阵中的最长递增路径
  2. linux 常用命令
  3. 生成解决方案,主项目的bin目录下没有其他项目生成的dll
  4. HTML 学习笔记 JavaScript (实现)
  5. 【BZOJ-1090】字符串折叠 区间DP + Hash
  6. ADO.NET学习系列(一)
  7. iOS开发——使用OC篇&amp;frame,bounds,center,position,anchorPoint总结
  8. 1031. Hello World for U (20)
  9. Wince下实现ImageButton
  10. 循环checked表单 元素
  11. 福州大学W班 软件工程课中期调查
  12. 实例分析exec函数
  13. linux之特殊字符
  14. loj6157 A ^ BProblem (并查集)
  15. 【JQ】jq动态绑定事件.on()、解绑事件off()
  16. java代码示例(2)
  17. Codeforces 1077 F2 - Pictures with Kittens (hard version)
  18. Oracle监听程序未启动或数据库服务未注册到该监听
  19. kafka 数据一致性-leader,follower机制与zookeeper的区别;
  20. 服务级别协议(SLA)与运行水平协议(OLA)

热门文章

  1. Windows路由表配置:双网卡同时上内外网
  2. 学习XML(添加一个子节点) 摘录
  3. sql server数据库查询超时报错
  4. python--迭代器的实现
  5. Java模拟公司置办货物系统(二)
  6. How to export Excel files in a Python/Django application
  7. dp之多重背包hdu1114
  8. LinQ的简单使用
  9. Centos 挂载NTFS格式的USB硬盘
  10. http协议之报文详解