如何从存储在Arraylist中的Hashmap中搜索和提取值

时间:2017-07-18 14:17:53

标签: java android search arraylist hashmap

List<Map<String, String>> personList = new ArrayList<HashMap<String, String>> ();
String tempcnic = SBox.getText().toString();
HashMap<String,String> temp = new HashMap<>();
for (int i = 0; i < personlistcopy.size(); i++) {
    temp = personlistcopy.get(i);
    if (temp.get(TAG_CNIC) == tempcnic) {
        Toast.makeText(History.this, temp.get(TAG_CNIC), Toast.LENGTH_SHORT).show();
        personList2.add(temp);
    }
    temp = null;
}

我的ArrayList包含HashMap个, HashMap包含4个具有相应值的键。

  1. 名称
  2. 网络中心
  3. 日期
  4. 时间
  5. 请帮助我做&#34;使用给定的cnic搜索并查找HashMap中的所有ArrayList,并将其添加到新的ArrayList。新的ArrayList将包含该cnic的所有记录。&#34;

1 个答案:

答案 0 :(得分:4)

以下是如何使用Java 8 stream

List<Map<String, String>> personList = new ArrayList<>(); //Your list

List<Map<String,String>> filtered = personList.stream()
    .filter(p -> "your_cnic".equals(p.get("cnic")))
    .collect(Collectors.toList());

如果您想要不区分大小写的比较,则可以使用equalsIgnoreCase代替equals

这是非流解决方案(适用于Java 5,6和7):

List<HashMap<String, String>> personList = new ArrayList<HashMap<String, String>>(); //Your list
List<HashMap<String,String>> filtered = new ArrayList<HashMap<String,String>>();

for(HashMap<String, String> person : personList){
    if("your_cnic".equals(person.get("cnic"))){
        filtered.add(person);
    }
}