【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:映射,对于列 ...
随机推荐
- ueditor 编辑器的配置 实现上传图片---附效果图
由于项目需要,最近使用了ueditor,实现了图片上传功能,在此分享一下遇到的一些问题. 项目使用net+mvc框架搭建,则选择的是NET版本ueditor 编辑器(可去百度官网下载), 下载完成导入 ...
- SQL Server创建LinkServer
USE [master] GO /****** Object: LinkedServer [xxx_LNK] Script Date: 2014/7/7 17:04:13 ******/ EXEC m ...
- Android 微信分享信息
随着微信越来越火,越来越多的应用要求有分享到微信的功能.虽然有很多平台都帮集成有分享功能,比如友盟.但是个人觉得友盟集成的东西太多了,自己封装得太过分了,很多资源文件也要带进去,所以感觉不是怎么好,所 ...
- 访问动态链接库中的C++类和资源
面我们来介绍如何访问动态链接库中的C++类和资源.其具体操作步骤如下:(1)创建一个基于对话框的工程,工程名称为“AccessDll”.设计对话框资源如图1所示. 图1 对话框资源设计窗口(2)定义 ...
- cdoj 791 Frozen Rose-Heads
//本来想做白书上一题 结果发现又要二染色 又要dp的 想了两个小时没想通 然后做了个傻逼题安慰自己 解:不多说,就是递归到叶节点,然后回来的时候在解决子树和直接删边的代价中间取个最小值 #inclu ...
- ar解压deb包
解压文件 ar -x libstdc++6_4.7.2-5_i386.deb tar -zxvf data.tar.gz
- Euro Efficiency(完全背包)
Euro Efficiency Time Limit : 2000/1000ms (Java/Other) Memory Limit : 20000/10000K (Java/Other) Tot ...
- The Tips of Success(成功的建议)
1.Do one thing at a time,and do well. 2.Never forget to say "thanks". 3,Keep on going.Neve ...
- 有关Repeater的事件
Repeater放在Updatepanel中是可以通过右键->属性,双击事件来生成事件的,若能这样的话,那最后是用这种方法吧,最起码不会出错!
- 漫谈servlet技术
1.要谈到Servlet技术,不得不先谈谈动态网页的概念. 编写过网页的人都知道,浏览器能够根据HTML静态标记语言来显示各式各样的网页.但是如果我们需要在网页上完成一些业务逻辑:比如登陆验证.或者说 ...