java中字符串截取,然后根据截取的数据查询

java中字符串截取,然后根据截取的数据查询
2025-01-01 19:03:16
推荐回答(1个)
回答1:

     List statusList = new ArrayList(2);
        if (status!=null) {
                String[] splits = status.split(",");
                for (String s : splits) {
                    statusList.add(Byte.valueOf(s));
            }
        }
        
        int count = newsService.count(statusList);
        List search;
        if(count > 0)
            search = newsService.select(statusList);

以前写的代码,前面是传进来的是status=1,2,3,4这样的数据,截取之后遍历。然后存在List中。后面newsservice.select是写的查询,在查询那边会把list里面的都查询,其实就像写for循环把list里面的东西遍历一下然后查询。