判断一个list集合是否有包含重复的内容
// Set集合不允许出现重复的内容,oldList为之前的集合,自动去重
Set<String> newList = new HashSet<>(oldList);
// 如果包含重复的数据,newList和oldList是不会一样的
if (newList .size() != oldList.size()) return AjaxResult.error("包含重复数据");
数组转为List集合
// 以逗号分割成数组,把数组转换成list集合
List<String> merchantCodeList= Arrays.asList(appMsg.getUserCode().split(","));
List集合转为String
// 把查询到的list集合转为String类型以逗号分割
String userId = StringUtils.join(appUserIdList, ',');
循环遍历一个List集合,输出每一个
// for循环遍历list集合
for (int i = 0; i < merchantCodeList.size(); i++) {
System.out.println(merchantCodeList.get(i));
}
把一个JSON对象转换为对应的实体类,前提是字段名都对的上
JSONArray jsonArray = "xxxxxxxxxxxxxxxxxxxxxxxxxxx";
List<FeeModuleVo> feeMoudleList = jsonArray.toJavaList(FeeModuleVo.class);
把实体类A复制给B,只会复制字段名对应的上的
BeanUtils.copyProperties(A,B);