- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个List<Map<String, Object>>
数据,我想应用一些按括号优先顺序的逻辑条件列表。示例条件类似于 ((firstname = john AND Lastname = Eleven) OR (salary = 15000 AND location = Mexico OR (firstname = mathew AND lastname = Thirteen)))
我想在 List
上运行这些条件并只返回匹配的数据
我写了下面的代码,如果有人可以修改以基于过滤器工作,那就太好了
package test;
import java.util.List;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.stream.Collectors;
public class TestFilter {
public static void main(String argv[]) {
String[] firstnames = {"john", "david", "mathew", "john", "jerry", "Uffe", "Sekar", "Suresh", "Ramesh", "Raja"};
String[] secondnames = {"Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen", "Twenty"};
String[] salary = {"10000", "20000", "15000", "5323", "2000", "5346", "1000", "4889", "7854", "2438"};
String[] location = {"India", "Iceland", "Mexico", "Slovenia", "Poland", "Australia", "1000", "USA", "England", "Canada"};
List<Map<String, Object>> list = new ArrayList<>();
for (int i = 0; i < 10; i++) {
Map<String, Object> dataMap = new HashMap<>();
dataMap.put("firstname", firstnames[i]);
dataMap.put("secondname", secondnames[i]);
dataMap.put("salary", salary[i]);
dataMap.put("location", location[i]);
list.add(dataMap);
}
String filterRule = "((firstname = john AND Lastname = Eleven) OR (salary = 15000 AND location = Mexico OR (firstname = mathew AND lastname = Thirteen)))";
System.out.println(filter(list, filterRule));
}
public static List<Map<String, Object>> filter(List<Map<String, Object>> list, String filterRules) {
List<Map<String, Object>> filtered = list.stream()
.filter(p -> checkFilter(p, filterRules)).collect(Collectors.toList());
return filtered;
}
public static Boolean checkFilter(Map<String, Object> mapData, String filterRules) {
// Apply condition here and return true or false
// return (mapData.get("firstname") + "").equalsIgnoreCase("john");
//return true;
}
}
最佳答案
我相信我的答案并不完全是您正在寻找的内容,但它可能对您有所帮助或对如何过滤有新的想法。我的想法是通过创建 HashMap 来模拟数据库,然后您可以根据某些条件进行过滤搜索,以及向该数据库(HashMap)添加和删除..像这样:
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
public class TestFilter {
public Map<Integer, ArrayList<String>> dataMap;
List<String> firstnames, lastnames, salarys, locations; // List is dynamic, you can add to it and delete at run time
public TestFilter(){
firstnames = new ArrayList<String>(Arrays.asList( new String[]{"john", "david", "mathew", "john", "jerry", "Uffe", "Sekar", "Suresh", "Ramesh", "Raja"}));
lastnames = new ArrayList<String>(Arrays.asList( new String[]{"Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen", "Twenty"}));
salarys = new ArrayList<String>(Arrays.asList( new String[]{"10000", "20000", "15000", "5323", "2000", "5346", "1000", "4889", "7854", "2438"}));
locations = new ArrayList<String>(Arrays.asList( new String[]{"India", "Iceland", "Mexico", "Slovenia", "Poland", "Australia", "1000", "USA", "England", "Canada"}));
populateDatabase();
}
public static void main(String argv[]) {
TestFilter tf = new TestFilter(); // just example to test
Scanner in = new Scanner(System.in);
System.out.println("Insert First Name");
String firstName = in.nextLine();
System.out.println("Insert Last Name");
String lastName = in.nextLine();
System.out.println("Insert Salary");
String salary = in.nextLine();
System.out.println("Insert Location");
String location = in.nextLine();
System.out.println("Filter Result: " + tf.filter(firstName, lastName, salary, location));
tf.addRecord("Yahya", "Almardeny", "3000", "Ireland"); //add new record
System.out.println("After Adding: " + tf.dataMap); // test it
tf.deleteRecord(new String[]{"Yahya", "Almardeny"}); // delete old record
System.out.println("After Deleting: " + tf.dataMap); // test it
}
//this method will return the record (as ArrayList) if there is a match or null if there is not.
public ArrayList<String> filter(String firstName, String lastName, String salary,String location) {
//attempt to filter
for(Integer id : dataMap.keySet()){ //cycle through the database to find a match according to the conditions
if (dataMap.get(id).contains(firstName) && dataMap.get(id).contains(lastName) ||
dataMap.get(id).contains(salary) && dataMap.get(id).contains(location)){
return new ArrayList<String>(Arrays.asList(new String[]{id.toString(), dataMap.get(id).get(0),
dataMap.get(id).get(1), dataMap.get(id).get(2), dataMap.get(id).get(3)}));
}
}
return null;
}
public void populateDatabase(){
dataMap = new HashMap<Integer, ArrayList<String>>(); // create HashMap as a database give every new record auto increment integer as an Id
for(int i=0; i<firstnames.size(); i++){
dataMap.put(i, new ArrayList<String>(Arrays.asList(new String[]
{firstnames.get(i), lastnames.get(i), salarys.get(i), locations.get(i)})));
}
}
public void addRecord(String firstName, String lastName, String salary,String location){
firstnames.add(firstName);
lastnames.add(lastName);
salarys.add(salary);
locations.add(location);
populateDatabase();
}
public void deleteRecord(Object obj){
int position = -1;
// delete by a combination of first and last names or salary and location
if(obj instanceof String[]){ // first index is first name, second is last name OR first index is the salary and the second is the location
for(Integer id : dataMap.keySet()){ //cycle through the database to find a match according to the conditions
if (dataMap.get(id).contains(((String[]) obj)[0]) && dataMap.get(id).contains(((String[]) obj)[1]) ||
dataMap.get(id).contains(((String[]) obj)[0]) && dataMap.get(id).contains(((String[]) obj)[1])){
position = id;
}
}
}
if(position>-1){
firstnames.remove(position);
lastnames.remove(position);
salarys.remove(position);
locations.remove(position);
populateDatabase();
}
}
}
以及输出(例如):
Insert First Name
david
Insert Last Name
Twelve
Insert Salary
null
Insert Location
null
Filter Result: [1, david, Twelve, 20000, Iceland]
After Adding: {0=[john, Eleven, 10000, India], 1=[david, Twelve, 20000, Iceland], 2=[mathew, Thirteen, 15000, Mexico], 3=[john, Fourteen, 5323, Slovenia], 4=[jerry, Fifteen, 2000, Poland], 5=[Uffe, Sixteen, 5346, Australia], 6=[Sekar, Seventeen, 1000, 1000], 7=[Suresh, Eighteen, 4889, USA], 8=[Ramesh, Nineteen, 7854, England], 9=[Raja, Twenty, 2438, Canada], 10=[Yahya, Almardeny, 3000, Ireland]}
After Deleting: {0=[john, Eleven, 10000, India], 1=[david, Twelve, 20000, Iceland], 2=[mathew, Thirteen, 15000, Mexico], 3=[john, Fourteen, 5323, Slovenia], 4=[jerry, Fifteen, 2000, Poland], 5=[Uffe, Sixteen, 5346, Australia], 6=[Sekar, Seventeen, 1000, 1000], 7=[Suresh, Eighteen, 4889, USA], 8=[Ramesh, Nineteen, 7854, England], 9=[Raja, Twenty, 2438, Canada]}
关于java - 在java中的 map 数据列表上应用过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43659769/
我有一个对象数组,我想在键传入“filter”过滤器时提取值。下面是我尝试过的 Controller 代码片段,但我得到的响应类型未定义。请帮我找出哪里出错了。 var states = [{"HI
如果任何 J2EE 应用程序直接访问 servlet,然后 servlet 将相同的请求转发到某个 .jsp 页面。 request.getRequestDispatcher("Login.jsp")
我有一个带有图像缩略图的表单,可以通过复选框进行选择以进行下载。我想要一个包含 jQuery 中图像的数组,用于 Ajax 调用。 2个问题: - 表格顶部有一个复选框,用于切换我想要从映射中排除的所
我必须从服务器转储数据库,将 .sql 传输到另一台服务器,然后运行以下脚本以使用此语法删除某些行: DELETE wp_posts FROM wp_posts INNER JOIN wp_postm
我想从目录中过滤掉特定类型的文件,但收到错误“ token 语法错误,删除这些 token ”: File dir = new File("c:/etc/etc"); File[] f
几乎所有的 Web 应用程序都依赖外部的输入。这些数据通常来自用户或其他应用程序(比如 web 服务)。通过使用过滤器,您能够确保应用程序获得正确的输入类型。 您应该始终对外部数据进行过滤! 输
我正在开发一个由 OData 服务提供支持的搜索功能。它将返回一个或一列标题对象作为结果。我们需要搜索的许多字段不在标题对象中。它们仅在子对象(导航属性)中。能够针对子字段执行 OData 搜索并仍然
假设我有以下模型,它有一个方法 variants(): class Example(models.Model): text = models.CharField(max_length=255)
我有一个默认的列表列表,但我基本上想这样做: myDefaultDict = filter(lambda k: len(k)>1, myDefaultDict) 除了它似乎只适用于列表。我能做什么?
我正在使用 django-filter 来输出我的模型的过滤结果。那里没有问题。下一步是添加一个分页器……尽管现在已经苦苦挣扎了好几天。 views.py: def funds_overview(re
我正在做一个概念证明,我正在试验一种奇怪的行为。 我有一个按日期字段按范围分区的表,如果我设置固定日期或由 SYSDATE 创建的日期,查询的成本会发生很大变化。 这些是解释计划: SQL> SELE
如果一个或另一个值匹配,是否可以制作一个过滤器,例如一个中性的 PropertyFilter(并传递给链中的下一个过滤器)?就像是: value1 val
我是 VBA 初学者,正在尝试根据单元格值过滤数据,经过一番谷歌搜索后,我编写了一个有效的代码 Sub FilterDepartment_Sales() Sheet6.Activate
假设我在 excel 数据透视表中有两个过滤器。 两者最初都会显示筛选列的选定范围内的所有值。 当我仅在过滤器 1 中选择几个值时,过滤器 2 仍会继续显示基础数据中所选范围内特定过滤器列中的所有值。
是否可以定义自定义 build-ins (名称不再适合)在 ftl? 由于语义前提,我不想让它成为一个函数,而是一个内置的。 最佳答案 这是不可能的,?语法是为内置函数保留的。 (顺便说一句,这意味着
我试图在 Edit | 之外添加一个链接通过插件删除wordpress管理员>用户>所有用户列表中的链接..这是我第一次尝试通过查看其他插件或搜索google来制作wordpress插件.. 我添加了
我正在尝试按照以下教程使用 django 过滤器进行分页,但该教程似乎缺少某些内容,而且我无法使用基于函数的 View 方法显示分页。 https://simpleisbetterthancomple
由于我是 Powershell 新手,因此寻求最佳实践方面的帮助, 我有一个 csv 文件,我想过滤掉 csv 中的每一行,除了包含“未安装”的行 然后,我想根据包含计算机列表的单独 csv 文件过滤
我正在尝试创建一个搜索查询,它会告诉我我作为审阅者添加到其中的打开更改,但我还没有提交最新补丁集的代码审查。这应该包括其他人已经评论过的更改,但我没有。 我能找到的最接近的是 is:reviewer
在我的 Web 应用程序中,我有 3 个主要部分 1. 客户 2. 供应商 3. 管理员 我正在使用 java session 过滤器来检查用户 session 并允许访问网站的特定部分。 因此客户只
我是一名优秀的程序员,十分优秀!