【DateStructure】 Charnming usages of Map collection in Java
When learning the usage of map collection in java, I found serveral beneficial methods that was encountered in the daily life. Now I made a summary:
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.Comparator;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.List;
- import java.util.Map;
- import java.util.SortedMap;
- import java.util.TreeMap;
- public class MapUtil
- {
- private static final Map<String, String> contents = new HashMap<String, String>();
- @SuppressWarnings("unchecked")
- public static void initMap()
- {
- Map testMap = new HashMap<String, String>();
- testMap.put("Albert", "Shao");
- contents.putAll(testMap);
- }
- /**
- * Four methods to list map.
- * output:
- * Albert:Shao
- Albert:Shao
- Shao
- Albert:Shao
- * @time Jul 18, 2014 11:39:46 AM
- * @return void
- */
- public static void listMap()
- {
- Map<String, String> testMap = new HashMap<String, String>();
- testMap.put("Albert", "Shao");
- for (Map.Entry<String, String> entry : testMap.entrySet())
- {
- System.out.println(entry.getKey() + ":" + entry.getValue());
- }
- for (String key : testMap.keySet())
- {
- System.out.println(key + ":" + testMap.get(key));
- }
- for (String value : testMap.values())
- {
- System.out.println(value);
- }
- Iterator<Map.Entry<String, String>> keyIt = testMap.entrySet()
- .iterator();
- while (keyIt.hasNext())
- {
- Map.Entry<String, String> entry = keyIt.next();
- System.out.println(entry.getKey() + ":" + entry.getValue());
- }
- }
- /**
- * Use the treeMap order by key asc.
- * Watch out: if key is repeated, the latter element will replace the former.
- * output: {Apple=five, Banana=three, Grape=one, Pair=four}
- *
- * @time Jul 18, 2014 11:37:51 AM
- * @return void
- */
- public static void sort()
- {
- SortedMap<String, String> sortMap = new TreeMap<String, String>();
- sortMap.put("Pair", "four");
- sortMap.put("Apple", "two");
- sortMap.put("Grape", "one");
- sortMap.put("Banana", "three");
- sortMap.put("Apple", "five");
- System.out.println(sortMap);
- }
- /**
- * Sort the Map by map.value, then set the result to map.
- * output : [Apple=1, Pair=2, Banana=3, Grape=4]
- *
- * @time Jul 18, 2014 11:36:28 AM
- * @return void
- */
- public static void sortByValue()
- {
- Map<String, Integer> testMap = new HashMap<String, Integer>();
- testMap.put("Pair", 2);
- testMap.put("Apple", 1);
- testMap.put("Grape", 4);
- testMap.put("Banana", 3);
- List<Map.Entry<String, Integer>> entryList = new ArrayList<Map.Entry<String, Integer>>(
- testMap.entrySet());
- Collections.sort(entryList,
- new Comparator<Map.Entry<String, Integer>>()
- {
- public int compare(Map.Entry<String, Integer> c1,
- Map.Entry<String, Integer> c2)
- {
- return (c1.getValue() - c2.getValue());
- }
- });
- System.out.println(entryList);
- }
- /**
- *Sort map by value when value is object.
- * use compareTo method to replace simple '-'
- * output:[Apple=AB, Grape=AF, Pair=BB, Banana=XY]
- *
- * @time Jul 18, 2014 11:48:35 AM
- * @return void
- */
- public static void sortByObject()
- {
- Map<String, String> testMap = new HashMap<String, String>();
- testMap.put("Pair", "BB");
- testMap.put("Apple", "AB");
- testMap.put("Grape", "AF");
- testMap.put("Banana", "XY");
- List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(
- testMap.entrySet());
- Collections.sort(entryList,
- new Comparator<Map.Entry<String, String>>()
- {
- public int compare(Map.Entry<String, String> c1,
- Map.Entry<String, String> c2)
- {
- return (c1.getValue().compareTo(c2.getValue()));
- }
- });
- System.out.println(entryList);
- }
- public static void main(String[] args)
- {
- MapUtil.listMap();
- MapUtil.sort();
- MapUtil.sortByValue();
- MapUtil.sortByObject();
- }
- }
If you want to further know about the usage of list methods, you could view my another blogs.
【DateStructure】 Charnming usages of Map collection in Java的更多相关文章
- 如何用javac 和java 编译运行整个Java工程 (转载)【转】在Linux下编译与执行Java程序
如何用javac 和java 编译运行整个Java工程 (转载) http://blog.csdn.net/huagong_adu/article/details/6929817 [转]在Linux ...
- 【BZOJ1125】[POI2008]Poc hash+map+SBT
[BZOJ1125][POI2008]Poc Description n列火车,每条有l节车厢.每节车厢有一种颜色(用小写字母表示).有m次车厢交换操作.求:对于每列火车,在交换车厢的某个时刻,与其颜 ...
- 【算法】哈希表的诞生(Java)
参考资料 <算法(java)> — — Robert Sedgewick, Kevin Wayne <数据结构> ...
- 【Unity】Unity中C#与Android中Java的互相调用遇到的一些问题
1.有关调用的一些问题: (1).在C#中直接调用java中的代码,无返回值: 在java中: public static void setAge(Context context , int leve ...
- 【dom4j】解析xml为map
dom4j解析xml文件 <?xml version="1.0" encoding="utf-8"?> <workflows> < ...
- 【python】lamda表达式,map
一个很好的博客:http://blog.csdn.net/mathboylinlin/article/details/9413551 博客不让转载,我只摘抄了里面几个例子,更多内容到博客里去看 lam ...
- 【iOS】苹果,百度Map定位使用与总结
iOS中使用较多的3款地图,google地图.百度地图.苹果自带地图(高德).当中苹果自带地图在中国使用的是高德的数据.苹果在iOS 6之后放弃了使用谷歌地图,而改用自家的地图.在国内使用的较多的就是 ...
- 【原创】【Android】揭秘 ART 细节 ---- Garbage collection
背景 Dalvik :http://zh.wikipedia.org/wiki/Dalvik%E8%99%9A%E6%8B%9F%E6%9C%BA ART :http://source.andro ...
- 【384】reduce归纳、map映射、filter筛选 的用法
参考:4. Map, Filter and Reduce — Python Tips 0.1 documentation 参考:Python的functools.reduce用法 Map:映射,对于列 ...
随机推荐
- 异步操作AsycnTask类
1. 首先执行onPreExecute方法,进行UI的初步设置 2. 其次执行doInBackground方法,此时将不在UI中线程中进行了 3. 然后如果要进行中的数据的话可以通过publis ...
- ceph rpm foor rhel6
ceph-0.86-0.el6.x86_64.rpm 09-Oct-2014 10:00 13M ceph-0.87-0.el6.x86_64.rpm 29-Oct-2014 13:38 13M ce ...
- 合理的keyword密度散布与黑帽SEO之躲藏文本
合理的keyword密度散布与黑帽SEO之躲藏文本 咱们都晓得.关于baidu的keyword排行有一个非常重要的条件即是keyword密度.在咱们的了解中keyword的密度在2%-8%这个规模之内 ...
- 使用Vitamio打造自己的Android万能播放器(1)——准备
前言 虽然Android已经内置了VideoView组件和MediaPlayer类来支持开发视频播放器,但支持格式.性能等各方面都十分有限,这里与大家一起利用免费的Vitamio来打造属于自己的And ...
- HDU 3698 DP+线段树
给出N*M矩阵.每一个点建立灯塔有花费.每一个点的灯塔有连接范围,求每一行都建立一个灯塔的最小花费,要求每相邻两行的灯塔能够互相连接.满足 |j-k|≤f(i,j)+f(i+1,k) DP思路,dp[ ...
- Linux网桥介绍
网桥的功能类似于二层交换机,作用都是划分冲突域,它们之前且一些细微的差别,此处不展开. Linux网桥作为一个特殊的网桥的实现,有一些自己的特点,因为没有看代码,只能从功能上简单分析一下.个人认为,L ...
- 一个很好的用C#导出数据到Excel模板的方法
/// <summary> /// 导数据到Excel模板 /// </summary> /// <param name="tab">要输出内容 ...
- IsPostBack是什么意思,如何运用?
IsPostBack是Page类的一个属性,返回值为一个布尔值.一般放在Page_Load事件中.当页面是第一次打开时其值为False,若当前页面为一个提交后的页面其值为True. if (!IsPo ...
- 望大神批评教育国庆无聊之作:ObjectValidator
起因: 本人国庆无聊,不知道干嘛, 所以模仿FluentValidation写了个简化版的ObjectValidator 个人设想是能用类似fluent的方式创建验证规则,然后使用者缓存并验证自己的对 ...
- DooDigestAuth php(后台)授权管理类 web浏览器授权
<?php /** * DooDigestAuth class file. * * @author Leng Sheng Hong <darkredz@gmail.com> * @l ...