JDK8 过滤list<对象>中某个值
//
//判断传递过来的参数是否有带小数点的 如果有带小数的直接返回错误
List<JtlDeviceThresholdDTO> collect = list.stream().filter(value -> value.getThresholdValue().indexOf(".") > 0).collect(Collectors.toList()); if(collect.size()>0){ br.setErrorMsg("参数有误,不能传递带小数的参数!"); return br; }