/**
* 求Map中Value(值)的最小值
*
* @param map
* @return
*/
public static Object getMinValue(Map map) {
if (map == null)
return null;
Collection c = map.values();
Object[] obj = c.toArray();
Arrays.sort(obj);
return obj[0];
}
/**
* 求Map中Value(值)的最大值
*
* @param map
* @return
*/
public static Object getMaxValue(Map map) {
if (map == null)
return null;
int length =map.size();
Collection c = map.values();
Object[] obj = c.toArray();
Arrays.sort(obj);
return obj[length-1];
}
原文:http://www.cnblogs.com/xiaoblog/p/4118022.html