数据处理的一些笔记

判断一个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);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值