HashMap中根据Value值,来获取对应的key值

要新年了,提前祝大家新年快乐,一帆风顺,万事如意,阖家欢乐!

上一篇文章中已经说过:HashMap的参数的拼接
http://blog.csdn.net/willba/article/details/79268387

这篇主要是说 根据特定的Value值,获取对应的key值,如下

//封装假数据
HashMap map = new HashMap<>();
map.put("keyOne","valueOne");
map.put("keyTwo","valueTwo");
map.put("keyThree","valueThree");

String newStr = "";
String str = valueTwo.00;
//截取小数点前面的数据
String data = str.substring(0,str.indexOf(".");
//循环HashMap内的对象 在根据value值进行操作
for(Map.Entry mapEntry : map.entrySet()){
	if(map.getValue().equals(data)){
	  newStr = map.getKey();
	  } }

以上!就是这样…

你可能感兴趣的:(Android)