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个具有相应值的键。
请帮助我做&#34;使用给定的cnic搜索并查找HashMap
中的所有ArrayList
,并将其添加到新的ArrayList
。新的ArrayList
将包含该cnic的所有记录。&#34;
答案 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);
}
}